mirror of
https://github.com/zeldaret/tww.git
synced 2026-06-19 15:20:36 -04:00
23 lines
398 B
C++
23 lines
398 B
C++
#ifndef D_A_ATDOOR_H
|
|
#define D_A_ATDOOR_H
|
|
|
|
#include "f_op/f_op_actor.h"
|
|
|
|
class daAtdoor_c : public fopAc_ac_c {
|
|
public:
|
|
inline BOOL draw();
|
|
inline BOOL execute();
|
|
void setAction(unsigned char) {}
|
|
|
|
void getSwbit();
|
|
void CreateHeap();
|
|
void calcMtx();
|
|
void CreateInit();
|
|
cPhs_State create();
|
|
|
|
public:
|
|
/* Place member variables here */
|
|
};
|
|
|
|
#endif /* D_A_ATDOOR_H */
|