mirror of
https://github.com/zeldaret/tww.git
synced 2026-06-01 17:57:24 -04:00
22 lines
388 B
C++
22 lines
388 B
C++
#ifndef D_A_OBJ_PLANT_H
|
|
#define D_A_OBJ_PLANT_H
|
|
|
|
#include "f_op/f_op_actor.h"
|
|
|
|
class daObjPlant_c : public fopAc_ac_c {
|
|
public:
|
|
inline cPhs_State _create();
|
|
inline bool _delete();
|
|
inline bool _draw();
|
|
inline bool _execute();
|
|
|
|
void CreateHeap();
|
|
void CreateInit();
|
|
void set_mtx();
|
|
|
|
public:
|
|
/* Place member variables here */
|
|
};
|
|
|
|
#endif /* D_A_OBJ_PLANT_H */
|