2026-01-12 01:55:20 +09:00
|
|
|
#ifndef __GEARSRC_SKYBOX_H__
|
|
|
|
|
#define __GEARSRC_SKYBOX_H__
|
2026-01-12 01:54:35 +09:00
|
|
|
|
|
|
|
|
#include <GearSrc/MachDep.h>
|
|
|
|
|
#include <GearSrc/TypeDefs.h>
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
GSDECL GSSkyBox GSSkyBoxOpen(GSClient client, const char* base);
|
2026-01-12 09:10:17 +09:00
|
|
|
GSDECL GSSkyBox GSSkyBoxTry(GSClient client, const char* name);
|
2026-01-12 01:54:35 +09:00
|
|
|
GSDECL void GSSkyBoxDraw(GSSkyBox skybox);
|
|
|
|
|
GSDECL void GSSkyBoxClose(GSSkyBox skybox);
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#endif
|