X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=src%2Fgame_mm%2Fexport.h;h=710d2ee9311d1abe6af475c703ae30880a12ebb9;hb=2274c9565541eb31f423f251e4f89c81417bf98a;hp=37c3eec18c06817157ceb181209fb2b9043832c1;hpb=64e7c54dce6ea8c063f04198c64c5057d751c928;p=rocksndiamonds.git diff --git a/src/game_mm/export.h b/src/game_mm/export.h index 37c3eec1..710d2ee9 100644 --- a/src/game_mm/export.h +++ b/src/game_mm/export.h @@ -59,10 +59,6 @@ // data structure definitions // ---------------------------------------------------------------------------- -struct GlobalInfo_MM -{ -}; - struct CycleList { int x, y; @@ -178,10 +174,6 @@ struct LevelInfo_MM short field[MAX_PLAYFIELD_WIDTH][MAX_PLAYFIELD_HEIGHT]; }; -struct GraphicInfo_MM -{ -}; - struct EngineSnapshotInfo_MM { struct GameInfo_MM game_mm; @@ -201,10 +193,10 @@ struct EngineSnapshotInfo_MM int hold_x, hold_y; int pacman_nr; - unsigned int rotate_delay; - unsigned int pacman_delay; - unsigned int energy_delay; - unsigned int overload_delay; + DelayCounter rotate_delay; + DelayCounter pacman_delay; + DelayCounter energy_delay; + DelayCounter overload_delay; }; @@ -212,7 +204,6 @@ struct EngineSnapshotInfo_MM // exported functions // ---------------------------------------------------------------------------- -extern struct GlobalInfo_MM global_mm_info; extern struct GameInfo_MM game_mm; extern struct LevelInfo_MM native_mm_level; extern struct EngineSnapshotInfo_MM engine_snapshot_mm; @@ -231,6 +222,7 @@ void InitGameActions_MM(void); void GameActions_MM(struct MouseActionInfo, boolean); void DrawLaser_MM(void); +void DrawTileCursor_MM(int, boolean); boolean ClickElement(int, int, int);