mirror of
https://github.com/zeldaret/ss
synced 2026-08-10 11:13:58 -04:00
b8b2375891
* d_t_heat_resist OK
24 lines
452 B
C++
24 lines
452 B
C++
#ifndef D_T_HEAT_RESIST_H
|
|
#define D_T_HEAT_RESIST_H
|
|
|
|
#include "common.h"
|
|
#include "d/t/d_tg.h"
|
|
#include "m/m_mtx.h"
|
|
|
|
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
|