assaultfish/engine/include/GearSrc/Model.h

19 lines
344 B
C
Raw Normal View History

2026-01-13 04:28:36 +09:00
#ifndef __GEARSRC_MODEL_H__
#define __GEARSRC_MODEL_H__
#include <GearSrc/MachDep.h>
#include <GearSrc/TypeDefs.h>
#ifdef __cplusplus
extern "C" {
#endif
GSDECL GSModel GSModelOpen(GSEngine engine, const char* path);
2026-01-19 13:53:52 +09:00
GSDECL void GSModelDraw(GSModel model);
2026-01-13 04:28:36 +09:00
GSDECL void GSModelClose(GSModel model);
#ifdef __cplusplus
}
#endif
#endif