mirror of
https://github.com/zeldaret/st
synced 2026-05-23 15:01:41 -04:00
0f74fd4201
* name item 31 to 34 * name item 25 to 29 * decompile PassengerManager (95%) * started cargo manager * local attribute * passenger/cargo manager ov001 functions * name item manager functions * fix build issues & more docs on 027e0cd8 * format
20 lines
445 B
C
20 lines
445 B
C
#pragma once
|
|
|
|
#include "Map/MapObjectId.hpp"
|
|
#include "types.h"
|
|
|
|
enum FileType {
|
|
FileType_ZOB = 'BLOZ',
|
|
};
|
|
|
|
// .zob
|
|
typedef struct ZeldaObjectList {
|
|
/* 00 */ FileType type; // always "ZOLB"
|
|
/* 04 */ unk32 nSize; // file size?
|
|
/* 08 */ unk16 unk_08;
|
|
/* 0A */ unk16 unk_0a;
|
|
/* 0C */ u16 nEntries; // number of entries
|
|
/* 0E */ unk16 unk_0e;
|
|
/* 10 */ u32 aIdList[]; // actor id or map object id
|
|
} ZeldaObjectList;
|