prime/include/Kyoto/Graphics/CCubeModel.hpp
Henrique Gemignani Passos Lima 90f941ccb6 Add CWorldShadow
Former-commit-id: 552dc65a2c7297c50e1a87f14ef49ce2fd4c5ca7
2022-12-01 18:11:09 +02:00

16 lines
350 B
C++

#ifndef _CCUBEMODEL
#define _CCUBEMODEL
class CTexture;
class CTransform4f;
class CCubeModel {
public:
static void SetRenderModelBlack(bool v);
static void DisableShadowMaps();
static void EnableShadowMaps(const CTexture*, const CTransform4f&, unsigned char, unsigned char);
static void SetDrawingOccluders(bool);
};
#endif // _CCUBEMODEL