This commit is contained in:
romkazvo
2023-08-07 19:29:24 +08:00
commit 34d6c5d489
4832 changed files with 1389451 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
#ifndef __CREHEAT_H__
#define __CREHEAT_H__
//=============================================================
class CREHeat : public CRendElement
{
public:
int m_HeatWidth;
int m_HeatHeight;
public:
CREHeat()
{
m_HeatWidth = CRenderer::CV_r_heatsize;
m_HeatHeight = CRenderer::CV_r_heatsize;
mfSetType(eDATA_Heat);
mfUpdateFlags(FCEF_TRANSFORM);
}
virtual ~CREHeat()
{
}
virtual void mfPrepare();
virtual bool mfDraw(SShader *ef, SShadeLayer *sfm);
};
#endif // __CREHEAT_H__