assaultfish/engine/include/GearSrc/SkyBox.h
2026-01-12 01:55:20 +09:00

19 lines
348 B
C

#ifndef __GEARSRC_SKYBOX_H__
#define __GEARSRC_SKYBOX_H__
#include <GearSrc/MachDep.h>
#include <GearSrc/TypeDefs.h>
#ifdef __cplusplus
extern "C" {
#endif
GSDECL GSSkyBox GSSkyBoxOpen(GSClient client, const char* base);
GSDECL void GSSkyBoxDraw(GSSkyBox skybox);
GSDECL void GSSkyBoxClose(GSSkyBox skybox);
#ifdef __cplusplus
}
#endif
#endif