19 lines
348 B
C
19 lines
348 B
C
|
|
#ifndef __GEARBOX_SKYBOX_H__
|
||
|
|
#define __GEARBOX_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
|