mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-29 06:33:07 +00:00
HDB: Add cineUseEntity()
This commit is contained in:
parent
cc801cc7a1
commit
81f90c7721
@ -241,6 +241,13 @@ void AI::cineSetEntity(const char *entName, int x, int y, int level) {
|
||||
_cine.push_back(cmd);
|
||||
}
|
||||
|
||||
void AI::cineUse(const char *entName) {
|
||||
CineCommand *cmd = new CineCommand;
|
||||
cmd->string = entName;
|
||||
cmd->cmdType = C_USEENTITY;
|
||||
_cine.push_back(cmd);
|
||||
}
|
||||
|
||||
void AI::cineFadeIn(bool isBlack, int steps) {
|
||||
CineCommand *cmd = new CineCommand;
|
||||
cmd->speed = steps;
|
||||
|
@ -411,6 +411,7 @@ public:
|
||||
void cineWait(int seconds);
|
||||
void cineWaitUntilDone();
|
||||
void cineSetEntity(const char *entName, int x, int y, int level);
|
||||
void cineUse(const char *entName);
|
||||
void cineFadeIn(bool isBlack, int steps);
|
||||
void cineFadeOut(bool isBlack, int steps);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user