Mercurial > hg > old > magoroku_racing
annotate car.h @ 0:0fae5658fb0b
Initial revision
author | gongo |
---|---|
date | Thu, 02 Nov 2006 08:55:19 +0000 |
parents | |
children | a1908b83f8fa |
rev | line source |
---|---|
0 | 1 /* |
2 * $Id$ | |
3 */ | |
4 typedef struct car { | |
5 FVECTOR direction; // 向き | |
6 FVECTOR vertical; // | |
7 FVECTOR location; // 位置 | |
8 float speed; // 速度 | |
9 float speed_accel; // 加速度 | |
10 float speed_max; // 最高速度 | |
11 float brake; // ブレーキ | |
12 float rotation_angle; // 回転度数 | |
13 float y_angle; // 角度 | |
14 void *free_addr; | |
15 struct car *next; | |
16 OBJECT* body; | |
17 } Car, *CarPtr; |