mirror of
https://github.com/zeldaret/tww.git
synced 2026-06-28 10:20:52 -04:00
30 lines
543 B
C++
30 lines
543 B
C++
#ifndef D_A_LSTAIR_H
|
|
#define D_A_LSTAIR_H
|
|
|
|
#include "f_op/f_op_actor.h"
|
|
|
|
class daLStair_c : public fopAc_ac_c {
|
|
public:
|
|
inline bool _draw();
|
|
|
|
bool _delete();
|
|
void CreateHeap();
|
|
void CreateInit();
|
|
cPhs_State _create();
|
|
void set_mtx();
|
|
void setMoveBGMtx();
|
|
bool _execute();
|
|
void demoMove();
|
|
void checkAppear();
|
|
void moveBG();
|
|
void appear_stair();
|
|
void disappear_stair();
|
|
void set_on_se();
|
|
void set_off_se();
|
|
|
|
public:
|
|
/* Place member variables here */
|
|
};
|
|
|
|
#endif /* D_A_LSTAIR_H */
|