Changeset 127 for abuse/trunk/src/game.hpp
- Timestamp:
- Mar 19, 2008, 2:42:12 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
abuse/trunk/src/game.hpp
r124 r127 50 50 51 51 #define tile_type unsigned short 52 class game;53 extern game *the_game;52 class Game; 53 extern Game *the_game; 54 54 extern int dev; 55 55 extern int morph_sel_frame_color; … … 63 63 extern FILE *open_FILE(char const *filename, char const *mode); 64 64 65 class game65 class Game 66 66 { 67 private: 67 68 JCFont *fnt; 68 intfinished;69 bool finished; 69 70 int bg_top,fg_top; // in the fg/bg window which tile is at the top? 70 71 int bright_color,med_color,dark_color, // for boundaries and windows, etc … … 90 91 int state,zoom; 91 92 93 Game(int argc, char **argv); 94 ~Game(); 92 95 93 game(int argc, char **argv);94 96 void step(); 95 97 void show_help(char const *st); … … 155 157 void request_level_load(char *name); 156 158 void request_end(); 157 ~game();158 159 } ; 159 160
Note: See TracChangeset
for help on using the changeset viewer.