d_t_heat_resist OK (#173)

* d_t_heat_resist OK
This commit is contained in:
Orstedra
2025-05-24 04:22:49 +02:00
committed by GitHub
parent 745d156153
commit b8b2375891
4 changed files with 50 additions and 7 deletions
+11 -2
View File
@@ -1,14 +1,23 @@
#ifndef D_T_HEAT_RESIST_H
#define D_T_HEAT_RESIST_H
#include "d/a/d_a_base.h"
#include "common.h"
#include "d/t/d_tg.h"
#include "m/m_mtx.h"
class dTgHeatResist_c : public dAcBase_c {
class dTgHeatResist_c : public dTg_c {
public:
dTgHeatResist_c() {}
virtual ~dTgHeatResist_c() {}
virtual int create() override;
virtual int doDelete() override;
virtual int draw() override;
virtual int actorExecute() override;
private:
/* 0x0FC */ mMtx_c matrix;
/* 0x12C */ u8 mInverted;
};
#endif