diff options
Diffstat (limited to 'scumm.h')
-rw-r--r-- | scumm.h | 19 |
1 files changed, 10 insertions, 9 deletions
@@ -783,16 +783,7 @@ public: uint32 *_classData; - static int newDirToOldDir(int dir); - static int oldDirToNewDir(int dir); - - static int normalizeAngle(int angle); int getAngleFromPos(int x, int y); - static int fromSimpleDir(int dirtype, int dir); - static int toSimpleDir(int dirtype, int dir); - static int numSimpleDirDirections(int dirType); - void startAnimActorEx(Actor *a, int frame, int direction); - int getProgrDirChange(Actor *a, int mode); void walkActors(); void playActorSounds(); @@ -1491,4 +1482,14 @@ void CDECL warning(const char *s, ...); void CDECL debug(int level, const char *s, ...); void checkHeap(); +/* Direction conversion functions (between old dir and new dir format) */ +int newDirToOldDir(int dir); +int oldDirToNewDir(int dir); + +int normalizeAngle(int angle); +int fromSimpleDir(int dirtype, int dir); +int toSimpleDir(int dirtype, int dir); +int numSimpleDirDirections(int dirType); + + #endif |