mirror of
https://github.com/zeldaret/tww.git
synced 2026-06-03 02:28:37 -04:00
33 lines
658 B
C++
33 lines
658 B
C++
#ifndef D_A_MDOOR_H
|
|
#define D_A_MDOOR_H
|
|
|
|
#include "f_op/f_op_actor.h"
|
|
|
|
class daMdoor_c : public fopAc_ac_c {
|
|
public:
|
|
void chkFlag(unsigned short) {}
|
|
void clrFlag(unsigned short) {}
|
|
inline BOOL draw();
|
|
inline BOOL execute();
|
|
void nextAction() {}
|
|
void setAction(unsigned char) {}
|
|
void setFlag(unsigned short) {}
|
|
|
|
void getSwbit();
|
|
void getType();
|
|
void getToolId();
|
|
void getShapeType();
|
|
void CreateHeap();
|
|
void calcMtx();
|
|
void smokeInit();
|
|
void smokeEnd();
|
|
void CreateInit();
|
|
cPhs_State create();
|
|
void demoProc();
|
|
|
|
public:
|
|
/* Place member variables here */
|
|
};
|
|
|
|
#endif /* D_A_MDOOR_H */
|