Files
banjo-kazooie/include/assets.h
2022-07-15 17:09:41 -05:00

22 lines
312 B
C

#ifndef ASSETS_H
#define ASSETS_H
#include <ultra64.h>
#include "structs.h"
typedef struct asset_rom_table_head_s{
u32 count;
u32 unk4;
} AssetROMHead;
typedef struct asset_file_meta_s{
u32 offset;
s16 compFlag;
s16 unk6;
} AssetFileMeta;
extern u8 D_5E90; //rom file asset bin;
#endif