summaryrefslogtreecommitdiff
path: root/include/objects.h
diff options
context:
space:
mode:
authorAldrik Ramaekers <aldrikboy@gmail.com>2024-05-16 09:50:23 +0200
committerAldrik Ramaekers <aldrikboy@gmail.com>2024-05-16 09:50:23 +0200
commit197958d8e7f539de6b1da937fddbbbfcf167a73b (patch)
tree57c85c2e07e4be95e0b1ec0e8dd303d8b82b7921 /include/objects.h
parente2fb2bc2072f7d404a1c1664836d25b84b6fad03 (diff)
more doors & disco floor
Diffstat (limited to 'include/objects.h')
-rw-r--r--include/objects.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/objects.h b/include/objects.h
index 3ff7939..36ae30f 100644
--- a/include/objects.h
+++ b/include/objects.h
@@ -56,6 +56,7 @@ typedef enum t_object_type {
OBJECT_CLUB_SEAT7 = 33,
OBJECT_BOWLING_LANE = 34,
OBJECT_BOWLING_LANE_END = 35,
+ OBJECT_GLASS_DOOR_V = 36, // Substitute.
OBJECT_END,
} object_type;
@@ -126,6 +127,7 @@ object object_dict[OBJECT_END] = {
{0,(vec3f){0, 0, 0},{1,1,0.5f},OBJECT_CLUB_SEAT7, 1},
{0,(vec3f){0, 0, 0},{13,3,0},OBJECT_BOWLING_LANE, 0},
{0,(vec3f){0, 0, 0},{2,3,1},OBJECT_BOWLING_LANE_END, 1},
+ {0,(vec3f){0, 0, 0},{1,2,1},OBJECT_GLASS_DOOR_V, 0},
};
object get_object_at_tile(float x, float y);