2024-08-23 10:04:03 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
struct ObjMapElement {
|
|
|
|
s32 value;
|
|
|
|
s32 name_len;
|
|
|
|
if (name_len != -1) {
|
|
|
|
char name[name_len];
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct ObjMap {
|
2024-08-23 12:29:37 +00:00
|
|
|
u32 max = parent.parent.data_end;
|
2024-08-23 11:08:57 +00:00
|
|
|
ObjMapElement objects[while($ < max)];
|
2024-08-23 10:04:03 +00:00
|
|
|
};
|