move skybox

This commit is contained in:
Nishi 2026-01-12 09:10:17 +09:00
commit 6e7ba8658b
Signed by: nishi
GPG key ID: 27EF69B208EB9343
16 changed files with 22 additions and 110 deletions

View file

@ -15,6 +15,5 @@
#include <GearSrc/Resource.h>
#include <GearSrc/Endian.h>
#include <GearSrc/SkyBox.h>
#include <GearSrc/XML.h>
#endif

View file

@ -9,6 +9,7 @@ extern "C" {
#endif
GSDECL GSSkyBox GSSkyBoxOpen(GSClient client, const char* base);
GSDECL GSSkyBox GSSkyBoxTry(GSClient client, const char* name);
GSDECL void GSSkyBoxDraw(GSSkyBox skybox);
GSDECL void GSSkyBoxClose(GSSkyBox skybox);

View file

@ -74,7 +74,6 @@ typedef void (*GSSleepCallback)(int ms);
struct _GSResourceKV {
char* key;
GSResource value;
GSXML xml;
};
#ifdef _GEARSRC

View file

@ -1,18 +0,0 @@
#ifndef __GEARSRC_XML_H__
#define __GEARSRC_XML_H__
#include <GearSrc/MachDep.h>
#include <GearSrc/TypeDefs.h>
#ifdef __cplusplus
extern "C" {
#endif
GSDECL GSXML GSXMLOpen(GSEngine engine, const char* path);
GSDECL void GSXMLClose(GSXML xml);
#ifdef __cplusplus
}
#endif
#endif