Add hsfload.h header

This commit is contained in:
gamemasterplc 2023-12-05 07:37:57 -06:00
parent 5754048056
commit 0b6390b8f2
2 changed files with 19 additions and 7 deletions

12
include/game/hsfload.h Normal file
View file

@ -0,0 +1,12 @@
#ifndef _HSFLOAD_H
#define _HSFLOAD_H
#include "game/hsfformat.h"
HsfData *LoadHSF(void *data);
void ClusterAdjustObject(HsfData *model, HsfData *src_model);
char *SetName(u32 *str_ofs);
char *MakeObjectName(char *name);
int CmpObjectName(char *name1, char *name2);
#endif