Mario Kart 64
Loading...
Searching...
No Matches
objects.h
Go to the documentation of this file.
1#ifndef OBJECTS_H
2#define OBJECTS_H
3
4#include "spline.h"
5#include "common_structs.h"
6
7#define OBJECT_LIST_SIZE 0x226
8#define SOME_OBJECT_INDEX_LIST_SIZE 32
9
10typedef struct
11{
12 /* 0x00 */ f32 sizeScaling;
13 /* 0x04 */ Vec3f pos;
14 /* 0x10 */ Vec3f origin_pos;
15 /* 0x1C */ Vec3f unk_01C;
16 /* 0x28 */ Vec3f offset;
17 /* 0x34 */ f32 unk_034;
18 /* 0x38 */ Vec3f velocity; // acceleration
19 /* 0x44 */ f32 unk_044;
20 /* 0x48 */ s32 unk_048;
21 /* 0x4C */ s32 unk_04C;
22 /* 0x50 */ s32 unk_050;
23 /* 0x54 */ s32 status;
24 /* 0x58 */ s32 unk_058;
25 /* 0x5C */ s32 unk_05C;
26 /* 0x60 */ u8 *activeTLUT;
27 /* 0x64 */ u8 *activeTexture;
33 /* 0x68 */ u8 *tlutList; // I feel like this should actually be `u8 (*tlutList)[512]`, but that causes mismatches
34 /* 0x6C */ u8 *textureList;
35 /* 0x70 */ Gfx *model;
36 /* 0x74 */ Vtx *vertex;
37 /* 0x78 */ s8 unk_078[0x04];
39 /* 0x80 */ SplineData *spline;
40 /* 0x84 */ s16 unk_084[0xA];
41 /* 0x98 */ u16 timer;
42 /* 0x9A */ u16 unk_09A;
43 /* 0x9C */ s16 unk_09C;
44 /* 0x9E */ s16 unk_09E;
45 /* 0xA0 */ s16 primAlpha;
46 /* 0xA2 */ s16 unk_0A2;
47 /* 0xA4 */ s16 type;
48 /* 0xA6 */ s16 state;
49 /* 0xA8 */ s16 unk_0A8;
50 /* 0xAA */ s16 unk_0AA;
51 /* 0xAC */ s16 unk_0AC;
52 /* 0xAE */ s16 unk_0AE;
53 /* 0xB0 */ s16 unk_0B0;
54 /* 0xB2 */ Vec3su orientation; // rotation, I think
55 /* 0xB8 */ Vec3su unk_0B8;
57 /* 0xC4 */ u16 unk_0C4;
58 /* 0xC6 */ u16 unk_0C6;
59 /* 0xC8 */ u16 boundingBoxSize;
60 /* 0xCA */ s8 unk_0CA;
61 /* 0xCB */ s8 unk_0CB;
62 /* 0xCC */ s8 unk_0CC;
63 /* 0xCD */ s8 unk_0CD;
64 /* 0xCE */ s8 unk_0CE;
65 /* 0xCF */ s8 unk_0CF;
66 /* 0xD0 */ s8 unk_0D0;
67 /* 0xD1 */ s8 unk_0D1;
68 /* 0xD2 */ s8 itemDisplay;
69 /* 0xD3 */ s8 unk_0D3;
70 /* 0xD4 */ s8 unk_0D4;
71 /* 0xD5 */ u8 unk_0D5;
72 /* 0xD6 */ u8 unk_0D6;
73 /* 0xD7 */ u8 unk_0D7;
74 /* 0xD8 */ u8 unk_0D8;
75 /* 0xD9 */ u8 textureWidth;
76 /* 0xDA */ u8 textureHeight;
77 /* 0xDB */ u8 unk_0DB;
78 /* 0xDC */ u8 unk_0DC;
79 /* 0xDD */ u8 unk_0DD;
80 /* 0xDE */ s8 unk_0DE;
81 /* 0xDF */ u8 unk_0DF;
82} Objects; // size = 0xE0
83
84extern Objects gObjectList[];
85
86typedef struct
87{
88 /* 0x00 */ f32 sizeScaling;
89 /* 0x04 */ Vec3f pos;
90 /* 0x10 */ Vec3f origin_pos;
91 /* 0x1C */ Vec3f unk_01C;
92 /* 0x28 */ Vec3f offset;
93 /* 0x34 */ f32 unk_034;
94 /* 0x38 */ Vec3f velocity;
95 /* 0x44 */ f32 unk_044;
96 /* 0x48 */ s32 unk_048;
97 /* 0x4C */ s32 unk_04C;
98 /* 0x50 */ s32 unk_050;
99 /* 0x54 */ s32 status;
100 /* 0x58 */ s32 unk_058;
101 /* 0x5C */ s32 unk_05C;
102 /* 0x60 */ u8 *activeTLUT;
103 /* 0x64 */ u8 *activeTexture;
109 /* 0x68 */ u8 *tlutList; // I feel like this should actually be `u8 (*tlutList)[512]`, but that causes mismatches
110 /* 0x6C */ u8 *textureList;
111 /* 0x70 */ Gfx *model;
112 /* 0x74 */ Vtx *vertex;
113 /* 0x78 */ s8 unk_078[0x04];
114 /* 0x7C */ Vec4s *unk_07C;
115 /* 0x80 */ Vec4s *unk_080; // unk_080[][4]?
116 /* 0x84 */ s16 unk_084[0xA];
118 /* 0x9A */ u16 unk_09A;
119 /* 0x9C */ s16 unk_09C;
120 /* 0x9E */ s16 unk_09E;
121 /* 0xA0 */ s16 primAlpha;
122 /* 0xA2 */ s16 unk_0A2;
123 /* 0xA4 */ s16 currentItem;
124 /* 0xA6 */ s16 itemDisplayState; // Usually a state tracker
125 /* 0xA8 */ s16 unk_0A8;
126 /* 0xAA */ s16 unk_0AA;
127 /* 0xAC */ s16 unk_0AC;
128 /* 0xAE */ s16 unk_0AE;
129 /* 0xB0 */ s16 unk_0B0;
130 /* 0xB2 */ Vec3su orientation; // rotation, I think
131 /* 0xB8 */ Vec3su unk_0B8;
133 /* 0xC4 */ u16 unk_0C4;
134 /* 0xC6 */ u16 unk_0C6;
135 /* 0xC8 */ u16 unk_0C8;
136 /* 0xCA */ s8 unk_0CA;
137 /* 0xCB */ s8 unk_0CB;
138 /* 0xCC */ s8 unk_0CC;
139 /* 0xCD */ s8 unk_0CD;
140 /* 0xCE */ s8 unk_0CE;
141 /* 0xCF */ s8 unk_0CF;
142 /* 0xD0 */ s8 unk_0D0;
143 /* 0xD1 */ s8 unk_0D1;
144 /* 0xD2 */ s8 itemDisplay;
145 /* 0xD3 */ s8 unk_0D3;
146 /* 0xD4 */ s8 unk_0D4;
147 /* 0xD5 */ u8 unk_0D5;
148 /* 0xD6 */ u8 unk_0D6;
149 /* 0xD7 */ u8 unk_0D7;
150 /* 0xD8 */ u8 unk_0D8;
151 /* 0xD9 */ u8 textureWidth;
152 /* 0xDA */ u8 textureHeight;
153 /* 0xDB */ u8 unk_0DB;
154 /* 0xDC */ u8 unk_0DC;
155 /* 0xDD */ u8 unk_0DD;
156 /* 0xDE */ s8 unk_0DE;
157 /* 0xDF */ u8 unk_0DF;
158} ItemWindowObjects; // size = 0xE0
159
160// This are other lists of indices in gObjectList.
161
165#define VISIBLE 0x00040000
166
171extern s32 D_80183DA0;
172
174extern s32 gIndexLakituList[];
175
176#define DELETED_OBJECT_ID -1
177#define NULL_OBJECT_ID -1
178
181
182// Used for loop bounds when accessing indexObjectList1
183extern s16 D_80165750;
184
190extern s32 D_8018D1C8;
191extern s32 D_8018D1D0;
192extern s32 D_8018D1D8;
193
195extern s32 D_8018D3C0;
196
197extern Collision D_8018C0B0[];
198
207#define NUM_YV_FLAG_POLES 4
208
209typedef struct {
210 /* 0x0 */ Vec3s pos;
211 /* 0x6 */ u16 rot;
212} YVFlagPoleSpawn; // size = 0x8;
213
215
216#define NUM_CRABS 0xA
217
218typedef struct {
219 /* 0x0 */ s16 startX;
220 /* 0x2 */ s16 patrolX;
221 /* 0x4 */ s16 startZ;
222 /* 0x6 */ s16 patrolZ;
223} CrabSpawn;
224
225extern CrabSpawn gCrabSpawns[];
226
227#define NUM_THWOMPS_50CC 8
228#define NUM_THWOMPS_100CC_EXTRA 11
229#define NUM_THWOMPS_150CC 12
230
231extern Vec3f D_800E6734[];
232
233typedef struct {
234 /* 0x0 */ s16 startX;
235 /* 0x2 */ s16 startZ;
236 /* 0x4 */ s16 unk_4; // Group Id?
237 /* 0x6 */ s16 unk_6; // Starting State?
238} ThwompSpawn; // size = 0x8;
239
244
246
247#define NUM_NEON_SIGNS 10
248#define NUM_CHAIN_CHOMPS 3
249
250#define NUM_PENGUINS 15
251
261extern s32 indexObjectList1[];
262
263#define NUM_SEAGULLS 10
264#define NUM_SNOWMEN 19
265#define NUM_HEDGEHOGS 15
266
267typedef struct {
268 /* 0x0 */ Vec3s pos;
269 /* 0x6 */ s16 unk_6; // Group Id?
270} SnowmanSpawn; // size = 0x8;
271
273
274typedef struct {
275 /* 0x0 */ Vec3s pos;
276 /* 0x6 */ s16 unk_06; // Group Id?
277} HegdehogSpawn; // size = 0x8;
278
281
290extern s32 indexObjectList2[];
291
292#define NUM_BOOS 0xA
293#define NUM_FIRE_BREATHS 4
294
296
297// These should really, really be Vec3s arrays, but that doesn't match
298extern s16 D_800E5740[];
299extern s16 D_800E579C[];
300extern s16 D_800E57F8[];
301
306extern s32 indexObjectList3[];
307
311extern s32 indexObjectList4[];
312
313#define gObjectParticle1_SIZE 128
314#define NUM_GROUP1_MOLES 8
315#define NUM_GROUP2_MOLES 11
316#define NUM_GROUP3_MOLES 12
317#define NUM_TOTAL_MOLES (NUM_GROUP1_MOLES + NUM_GROUP2_MOLES + NUM_GROUP3_MOLES)
318#define NUM_SNOWFLAKES 0x32
319
320typedef union {
321 Vec3s asVec3sList[NUM_TOTAL_MOLES];
322 s16 asFlatList[NUM_TOTAL_MOLES*3];
325
330extern s8 D_8018D198[];
331extern s8 D_8018D1A8[];
332extern s8 D_8018D1B8[];
333
335extern s32 D_8018CF10;
336
344extern s32 gObjectParticle1[];
345
348
350extern s16 D_8018D174;
351
352#define gObjectParticle2_SIZE 128
353
358extern s32 gObjectParticle2[];
359
362
364extern s32 D_8018D3BC;
365
366#define gObjectParticle3_SIZE 128
367extern s32 gObjectParticle3[];
370extern s16 D_80165730;
371
373extern s16 D_80165738;
374
375#define gObjectParticle4_SIZE 0x40
376
377#define NUM_TORCHES 8
378
379// This should really be `extern Vec3s gTorchSpawns[];`
381extern s16 gTorchSpawns[];
382
388extern s32 gObjectParticle4[];
389
392
393// Maximum number of leaves that can be falling?
394#define gLeafParticle_SIZE 0x40
395// Number of leaves to spawn each bonk?
396#define gLeafParticle_SPAWN_SIZE 0x14
397
402extern s32 gLeafParticle[];
403
406
407// Struct used for clouds and stars
408// See `func_80070328` and `func_80070250` for cloud initialization
409// See `func_800704A0` and `func_800703E0` for star initialization
410typedef struct {
411 // rotY and posY seem relative to the camera.
412 // See `func_800788F8` to see how rotY is used to decide whether and where to display clouds/stars
413 // See `func_80078A44` and `func_800789AC` to see how stars and clouds (respectively) are looped over
414 /* 0x00 */ u16 rotY;
415 /* 0x02 */ u16 posY;
416 // Can be bigger than 100!
417 /* 0x04 */ u16 scalePercent;
418 // There are a couple different cloud shapes, this decides which one is used
419 // For stars, this is always 0 since they don't have multiple textures
420 /* 0x06 */ u16 subType;
421} StarData, CloudData; // size = 0x8
422
423#define D_8018CC80_SIZE 0x64
424
429extern s32 D_8018CC80[];
430
432extern s32 D_8018D1F0;
433
435extern s32 D_8018D1F8;
436
438extern s16 D_8018D17C;
439
441extern s8 D_8018D230;
442
444extern s32 D_8018D3C4;
445
446#endif
s16 Vec4s[4]
Definition common_structs.h:13
f32 Vec3f[3]
Definition common_structs.h:6
u16 Vec3su[3]
Definition common_structs.h:12
s16 Vec3s[3]
Definition common_structs.h:11
#define NUM_TOTAL_MOLES
Definition objects.h:317
ThwompSpawn gThomwpSpawns150CC[]
Definition some_data.c:329
s16 D_800E579C[]
Definition some_data.c:283
s32 D_8018D3C4
Some sort of limiter on how many of some object type can spawn.
Definition code_80057C60_var.c:149
s32 D_8018D1C8
Definition code_80057C60_var.c:74
s32 gObjectParticle2[]
Definition code_80057C60.c:315
s32 gItemWindowObjectByPlayerId[]
Appears to be a list of object list indices for the Item Window part of the HUD.
Definition code_80057C60.c:259
s32 indexObjectList3[]
Definition code_80057C60.c:293
s16 D_80165750
s32 D_8018D1D8
Definition code_80057C60_var.c:78
s8 D_8018D1B8[]
Definition code_80057C60_var.c:67
s32 gLeafParticle[]
Definition code_80057C60.c:330
s16 gNumActiveThwomps
Definition code_80057C60.c:111
s32 D_8018CC80[]
Definition code_80057C60.c:336
s32 gObjectParticle1[]
Definition code_80057C60.c:309
s16 D_8018D174
Used for cycling through snowflakes in func_80078790.
Definition code_80057C60_var.c:50
s32 gNextFreeObjectParticle4
Next free spot in gObjectParticle4? Wraps back around to 0 if it gets bigger than gObjectParticle4_SI...
Definition code_80057C60.c:253
s32 indexObjectList2[]
Definition code_80057C60.c:280
s32 gIndexLakituList[]
Lakitu?
Definition code_80057C60.c:238
Collision D_8018C0B0[]
Array of (4) Collisions?
Definition code_80057C60.c:301
s8 D_8018D198[]
Definition code_80057C60_var.c:63
s32 indexObjectList1[]
Definition code_80057C60.c:270
s16 D_8018D17C
Also next free spot in D_8018CC80?
Definition code_80057C60_var.c:53
s32 gNextFreeLeafParticle
Next free spot in gLeafParticle? Wraps back around to 0 if it gets bigger than gLeafParticle_SIZE.
Definition code_80057C60.c:256
s32 gObjectParticle4[]
Definition code_80057C60.c:325
s16 D_800E5740[]
Definition some_data.c:273
Objects gObjectList[]
Definition code_80057C60.c:227
s32 gNextFreeObjectParticle2
Next free spot in gObjectParticle2? Wraps back around to 0 if it gets bigger than gObjectParticle2_SI...
Definition code_80057C60.c:247
ThwompSpawn * gThowmpSpawnList
Definition code_80057C60.c:113
s32 gNextFreeObjectParticle3
Next free spot in gObjectParticle3?
Definition code_80057C60.c:250
s32 D_80183DA0
Definition code_80057C60.c:235
struct StarData CloudData
s32 gObjectParticle3[]
Definition code_80057C60.c:318
s32 D_8018D3BC
Controls number of come object type placed into gObjectParticle2 on Frappe Snowland....
Definition code_80057C60_var.c:145
CrabSpawn gCrabSpawns[]
Definition some_data.c:615
s8 D_8018D1A8[]
Definition code_80057C60_var.c:65
YVFlagPoleSpawn D_800E5DF4[]
Definition some_data.c:550
s32 D_8018CF10
Unknown object index, only set for Kalimari Desert, never read.
Definition code_80057C60.c:339
Vec3s gHedgehogPatrolPoints[]
Definition some_data.c:575
s32 D_8018D1F8
Next free spot in D_8018CC80?
Definition code_80057C60_var.c:88
ThwompSpawn gThomwpSpawns50CC[]
Definition some_data.c:302
s16 D_80165730
Definition code_80057C60.c:101
s16 D_800E57F8[]
Definition some_data.c:293
Vec3s gFireBreathsSpawns[]
Definition some_data.c:265
ThwompSpawn gThwompSpawns100CCExtra[]
Definition some_data.c:314
SnowmanSpawn gSnowmanSpawns[]
Definition some_data.c:593
s32 gNextFreeObjectParticle1
Next free spot in gObjectParticle1? Wraps back around to 0 if it gets bigger than gObjectParticle1_SI...
Definition code_80057C60.c:244
s32 D_8018D1F0
Number of used spots in D_8018CC80?
Definition code_80057C60_var.c:85
HegdehogSpawn gHedgehogSpawns[]
Definition some_data.c:557
MoleSpawnUnion gMoleSpawns
Definition some_data.c:776
s32 D_8018D3C0
Limit on some object type (ice chips?) in Sherbet Land.
Definition code_80057C60_var.c:147
Vec3f D_800E6734[]
Definition some_data.c:943
s16 D_80165738
Tracking a count of some object type, don't know what object type yet.
Definition code_80057C60.c:104
s16 gTorchSpawns[]
Definition some_data.c:954
s8 D_8018D230
Something related to the display of the clouds/stars?
Definition code_80057C60_var.c:107
s32 D_8018D1D0
Definition code_80057C60_var.c:76
s32 indexObjectList4[]
Definition code_80057C60.c:299
Definition common_structs.h:138
Definition objects.h:218
s16 startX
Definition objects.h:219
s16 patrolZ
Definition objects.h:222
s16 startZ
Definition objects.h:221
s16 patrolX
Definition objects.h:220
Definition objects.h:274
s16 unk_06
Definition objects.h:276
Vec3s pos
Definition objects.h:275
Definition objects.h:87
u8 unk_0DB
Definition objects.h:153
s16 itemDisplayState
Definition objects.h:124
u16 unk_0C8
Definition objects.h:135
s16 unk_0AA
Definition objects.h:126
u8 * textureList
Definition objects.h:110
s8 unk_0D1
Definition objects.h:143
s8 unk_0D0
Definition objects.h:142
f32 sizeScaling
Definition objects.h:88
s32 unk_04C
Definition objects.h:97
s16 unk_0AC
Definition objects.h:127
u8 unk_0DF
Definition objects.h:157
u8 unk_0D7
Definition objects.h:149
Vec3f offset
Definition objects.h:92
s8 unk_0CF
Definition objects.h:141
Gfx * model
Definition objects.h:111
s8 unk_0CD
Definition objects.h:139
s8 unk_0CB
Definition objects.h:137
s8 unk_0CE
Definition objects.h:140
Vec4s * unk_07C
Definition objects.h:114
u8 unk_0D8
Definition objects.h:150
s8 unk_0DE
Definition objects.h:156
s32 unk_05C
Definition objects.h:101
u8 unk_0D6
Definition objects.h:148
s16 currentItem
Definition objects.h:123
s8 unk_0D3
Definition objects.h:145
Vec4s * unk_080
Definition objects.h:115
s16 unk_0B0
Definition objects.h:129
s16 unk_09E
Definition objects.h:120
Vtx * vertex
Definition objects.h:112
s32 unk_058
Definition objects.h:100
s16 unk_0AE
Definition objects.h:128
Vec3su direction_angle
Definition objects.h:132
u16 unk_0C6
Definition objects.h:134
f32 unk_044
Definition objects.h:95
s16 unk_09C
Definition objects.h:119
s8 unk_0CC
Definition objects.h:138
Vec3f origin_pos
Definition objects.h:90
Vec3f velocity
Definition objects.h:94
Vec3f unk_01C
Definition objects.h:91
s32 unk_048
Definition objects.h:96
s8 itemDisplay
Definition objects.h:144
s8 unk_0CA
Definition objects.h:136
s32 unk_050
Definition objects.h:98
u8 * tlutList
Definition objects.h:109
u8 unk_0D5
Definition objects.h:147
u8 unk_0DD
Definition objects.h:155
u8 unk_0DC
Definition objects.h:154
Vec3su orientation
Definition objects.h:130
s16 unk_0A2
Definition objects.h:122
u8 * activeTexture
Definition objects.h:103
s8 unk_0D4
Definition objects.h:146
Vec3f pos
Definition objects.h:89
s32 status
Definition objects.h:99
u8 textureHeight
Definition objects.h:152
u8 textureWidth
Definition objects.h:151
u16 unk_09A
Definition objects.h:118
u16 unk_0C4
Definition objects.h:133
s16 primAlpha
Definition objects.h:121
u8 * activeTLUT
Definition objects.h:102
s16 unk_0A8
Definition objects.h:125
u16 goldenMushroomTimer
Definition objects.h:117
Vec3su unk_0B8
Definition objects.h:131
f32 unk_034
Definition objects.h:93
Definition objects.h:11
s8 unk_0CD
Definition objects.h:63
u8 unk_0D8
Definition objects.h:74
SplineControlPoint * controlPoints
Definition objects.h:38
Gfx * model
Definition objects.h:35
s8 unk_0D1
Definition objects.h:67
f32 sizeScaling
Definition objects.h:12
u8 unk_0DC
Definition objects.h:78
u8 * textureList
Definition objects.h:34
u8 unk_0D7
Definition objects.h:73
u8 unk_0DD
Definition objects.h:79
f32 unk_034
Definition objects.h:17
Vec3f pos
Definition objects.h:13
s32 unk_04C
Definition objects.h:21
s8 unk_0CF
Definition objects.h:65
s8 itemDisplay
Definition objects.h:68
s8 unk_0DE
Definition objects.h:80
s16 unk_0A2
Definition objects.h:46
Vec3f velocity
Definition objects.h:18
u16 boundingBoxSize
Definition objects.h:59
u16 unk_0C6
Definition objects.h:58
Vec3f unk_01C
Definition objects.h:15
u8 textureHeight
Definition objects.h:76
Vec3su unk_0B8
Definition objects.h:55
s16 state
Definition objects.h:48
s16 unk_0AE
Definition objects.h:52
s32 unk_058
Definition objects.h:24
u8 * activeTexture
Definition objects.h:27
f32 unk_044
Definition objects.h:19
s32 status
Definition objects.h:23
u8 unk_0D5
Definition objects.h:71
s32 unk_050
Definition objects.h:22
Vec3f offset
Definition objects.h:16
u8 * tlutList
Definition objects.h:33
s8 unk_0D0
Definition objects.h:66
s16 unk_0AA
Definition objects.h:50
u8 unk_0DF
Definition objects.h:81
s8 unk_0CC
Definition objects.h:62
s16 unk_0AC
Definition objects.h:51
s8 unk_0CA
Definition objects.h:60
s16 type
Definition objects.h:47
s32 unk_048
Definition objects.h:20
Vtx * vertex
Definition objects.h:36
Vec3f origin_pos
Definition objects.h:14
Vec3su orientation
Definition objects.h:54
u8 unk_0DB
Definition objects.h:77
s16 unk_09C
Definition objects.h:43
s8 unk_0CE
Definition objects.h:64
u8 textureWidth
Definition objects.h:75
s8 unk_0D3
Definition objects.h:69
s16 unk_09E
Definition objects.h:44
u16 unk_0C4
Definition objects.h:57
s8 unk_0CB
Definition objects.h:61
u8 * activeTLUT
Definition objects.h:26
u16 unk_09A
Definition objects.h:42
s16 unk_0B0
Definition objects.h:53
s16 unk_0A8
Definition objects.h:49
SplineData * spline
Definition objects.h:39
u8 unk_0D6
Definition objects.h:72
Vec3su direction_angle
Definition objects.h:56
s16 primAlpha
Definition objects.h:45
s8 unk_0D4
Definition objects.h:70
u16 timer
Definition objects.h:41
s32 unk_05C
Definition objects.h:25
Definition objects.h:267
s16 unk_6
Definition objects.h:269
Vec3s pos
Definition objects.h:268
Definition spline.h:21
Definition spline.h:31
Definition objects.h:410
u16 posY
Definition objects.h:415
u16 rotY
Definition objects.h:414
u16 subType
Definition objects.h:420
u16 scalePercent
Definition objects.h:417
Definition objects.h:233
s16 startX
Definition objects.h:234
s16 unk_4
Definition objects.h:236
s16 startZ
Definition objects.h:235
s16 unk_6
Definition objects.h:237
Definition objects.h:209
Vec3s pos
Definition objects.h:210
u16 rot
Definition objects.h:211
signed int s32
Definition ultratypes.h:15
signed char s8
Definition ultratypes.h:11
signed short int s16
Definition ultratypes.h:13
float f32
Definition ultratypes.h:33
unsigned short int u16
Definition ultratypes.h:14
unsigned char u8
Definition ultratypes.h:12
Definition objects.h:320