diff options
Diffstat (limited to 'src/types.h')
-rw-r--r-- | src/types.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/types.h b/src/types.h index dcbc097..d57af18 100644 --- a/src/types.h +++ b/src/types.h @@ -112,7 +112,8 @@ typedef struct { float yaw; float yawspeed; - int landed; + int landed; /* Object has landed */ + int recharging; /* Object has landed on a platform, so is recharging */ } ModelInstance; @@ -266,6 +267,8 @@ typedef struct { double cz; /* Coordinates of object at the moment when it collides */ double ttc; + + char *name; /* Name of object being collided against */ } CollisionSpec; |