assaultfish/engine/include/GearSrc/Model.h
2026-01-19 13:53:52 +09:00

19 lines
344 B
C

#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);
GSDECL void GSModelDraw(GSModel model);
GSDECL void GSModelClose(GSModel model);
#ifdef __cplusplus
}
#endif
#endif