Mercurial > hg > old > magoroku_racing
view game.h @ 12:b405fe1a6920
*** empty log message ***
author | gongo |
---|---|
date | Sat, 04 Nov 2006 08:55:26 +0000 |
parents | b000c4765eca |
children | 0c8300ffa038 |
line wrap: on
line source
/* * $Id$ */ typedef enum game_state { GAME_INIT, GAME_OPENING, GAME_SELECT_CAR, GAME_WAIT, GAME_SELECT_COURSE, GAME_READY, GAME_MAIN_INIT, GAME_MAIN, GAME_PAUSE, GAME_GOAL, GAME_FINISH } GAME_STATE; typedef struct game { GAME_STATE state; void* (*exec)(); CarPtr jiki; int course_id; // $B%3!<%9(BID int car_id; // $B<+5!(BID int camera_type; // $B%+%a%i$N%?%$%W(B int select; // $BA*BrMQJQ?t!)$$$i$J$$$+(B int play_id; int rap; } Game, *GamePtr; extern Game game;