Changeset 102 for trunk/src/game.cpp
- Timestamp:
- Aug 11, 2010, 6:18:42 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/game.cpp
r100 r102 27 27 int x, y; 28 28 int mousex, mousey; 29 int done; 29 30 30 31 int frame; … … 41 42 data->font = new Font("gfx/font/ascii.png"); 42 43 data->x = data->y = 0; 44 data->done = 0; 43 45 data->frame = 0; 44 46 } … … 71 73 } 72 74 75 void Game::Quit() 76 { 77 data->done = 1; 78 } 79 80 int Game::Finished() 81 { 82 return data->done; 83 } 84
Note: See TracChangeset
for help on using the changeset viewer.