The first commit

This commit is contained in:
Banjo Kazooie
2022-07-15 17:09:41 -05:00
commit dd13d34074
1087 changed files with 391897 additions and 0 deletions

21
include/assets.h Normal file
View File

@@ -0,0 +1,21 @@
#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