comparison game.h @ 8:f60cb9a39d7a

*** empty log message ***
author gongo
date Sat, 04 Nov 2006 08:28:46 +0000
parents 0fae5658fb0b
children b000c4765eca
comparison
equal deleted inserted replaced
7:f7a5aeed1292 8:f60cb9a39d7a
16 GAME_FINISH 16 GAME_FINISH
17 } GAME_STATE; 17 } GAME_STATE;
18 18
19 typedef struct game { 19 typedef struct game {
20 GAME_STATE state; 20 GAME_STATE state;
21 void (*exec)();
21 CarPtr jiki; 22 CarPtr jiki;
22 int course_id; // $B%3!<%9(BID 23 int course_id; // $B%3!<%9(BID
23 int car_id; // $B<+5!(BID 24 int car_id; // $B<+5!(BID
24 int camera_type; // $B%+%a%i$N%?%$%W(B 25 int camera_type; // $B%+%a%i$N%?%$%W(B
25 int select; // $BA*BrMQJQ?t!)$$$i$J$$$+(B 26 int select; // $BA*BrMQJQ?t!)$$$i$J$$$+(B
26 int demo_flg; // (demo_flg == 0) ? $BDL>o%b!<%I(B : $B%G%b%b!<%I(B
27 int play_id; 27 int play_id;
28 int rap; 28 int rap;
29 } Game, *GamePtr; 29 } Game, *GamePtr;
30 30
31 extern Game game; 31 extern Game game;