2022-10-09 05:13:17 +00:00
|
|
|
#ifndef _CCUBEMATERIAL
|
|
|
|
#define _CCUBEMATERIAL
|
2022-08-30 04:05:16 +00:00
|
|
|
|
|
|
|
#include "types.h"
|
|
|
|
|
|
|
|
#include "Kyoto/Graphics/CModelFlags.hpp"
|
|
|
|
#include "Kyoto/Math/CVector3f.hpp"
|
|
|
|
|
|
|
|
extern CVector3f sPlayerPosition;
|
|
|
|
|
|
|
|
class CCubeMaterial {
|
|
|
|
public:
|
|
|
|
private:
|
2022-09-05 04:01:13 +00:00
|
|
|
static void SetupBlendMode(uint blendFactors, const CModelFlags& flags, bool alphaTest);
|
2022-08-30 04:05:16 +00:00
|
|
|
|
|
|
|
static CVector3f sViewingFrom;
|
|
|
|
};
|
|
|
|
|
2022-10-09 05:13:17 +00:00
|
|
|
#endif // _CCUBEMATERIAL
|