diff car.h @ 0:0fae5658fb0b

Initial revision
author gongo
date Thu, 02 Nov 2006 08:55:19 +0000
parents
children a1908b83f8fa
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/car.h	Thu Nov 02 08:55:19 2006 +0000
@@ -0,0 +1,17 @@
+/*
+ * $Id$
+ */
+typedef struct car {
+    FVECTOR direction;    // 向き
+    FVECTOR vertical;     //
+    FVECTOR location;     // 位置
+    float speed;          // 速度
+    float speed_accel;    // 加速度
+    float speed_max;      // 最高速度
+    float brake;          // ブレーキ
+    float rotation_angle; // 回転度数
+    float y_angle;        // 角度
+    void *free_addr;
+    struct car *next;
+    OBJECT*  body;
+} Car, *CarPtr;