mirror of
https://github.com/zeldaret/ss
synced 2026-06-19 23:43:01 -04:00
17 lines
293 B
C++
17 lines
293 B
C++
#ifndef D_T_LB_THUNDER_H
|
|
#define D_T_LB_THUNDER_H
|
|
|
|
#include "d/t/d_tg.h"
|
|
#include "s/s_State.hpp"
|
|
|
|
class dTgLbThunder_c : public dTg_c {
|
|
public:
|
|
dTgLbThunder_c() : mStateMgr(*this) {}
|
|
virtual ~dTgLbThunder_c() {}
|
|
|
|
private:
|
|
/* 0x??? */ STATE_MGR_DECLARE(dTgLbThunder_c);
|
|
};
|
|
|
|
#endif
|