1234567891011121314151617181920212223 |
- // CDebugDepthShader - [2020 - 04 - 13 11:57:46]
- #ifndef _CDEBUGDEPTHSHADER_H_
- #define _CDEBUGDEPTHSHADER_H_
- #include "common.h"
- #include "CFTTUberShader.h"
- /*
- 001CF8FC CDebugDepthShader::CDebugDepthShader()
- 001CF908 CDebugDepthShader::~CDebugDepthShader()
- 001CF90C CDebugDepthShader::CreateMat()
- */
- class CDebugDepthShader : public CFTTUberShader {
- public:
- CDebugDepthShader(); // 001CF8FC
- ~CDebugDepthShader(); // 001CF908
- ushort CreateMat(); // 001CF90C
- static CDebugDepthShader s_tInstance; // 0047B698
- };
- #endif //_CDEBUGDEPTHSHADER_H_
|