X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=src%2Fgame.h;h=edbddd4d28871071b4bc583ef4f79533e01ef408;hb=5ae04ac2ef54f6f164a797c16c9782042cc2ce67;hp=dfc4312fb59ef6144241219b4489f824bf89c58d;hpb=fa9c72bb286c8e5e5095e666dbf85981ad3a8ea2;p=rocksndiamonds.git diff --git a/src/game.h b/src/game.h index dfc4312f..edbddd4d 100644 --- a/src/game.h +++ b/src/game.h @@ -17,17 +17,17 @@ #include "main.h" /* score for elements (also used by editor.c) */ -#define SC_EDELSTEIN 0 -#define SC_DIAMANT 1 -#define SC_KAEFER 2 -#define SC_FLIEGER 3 -#define SC_MAMPFER 4 +#define SC_EMERALD 0 +#define SC_DIAMOND 1 +#define SC_BUG 2 +#define SC_SPACESHIP 3 +#define SC_YAMYAM 4 #define SC_ROBOT 5 #define SC_PACMAN 6 -#define SC_KOKOSNUSS 7 -#define SC_DYNAMIT 8 -#define SC_SCHLUESSEL 9 -#define SC_ZEITBONUS 10 +#define SC_NUT 7 +#define SC_DYNAMITE 8 +#define SC_KEY 9 +#define SC_TIME_BONUS 10 void GetPlayerConfig(void); void DrawGameDoorValues(void); @@ -37,6 +37,8 @@ void InitMovDir(int, int); void InitAmoebaNr(int, int); void GameWon(void); int NewHiScore(void); + +void InitPlayerGfxAnimation(struct PlayerInfo *, int, int); void InitMovingField(int, int, int); void Moving2Blocked(int, int, int *, int *); void Blocked2Moving(int, int, int *, int *);