mirror of
https://github.com/zeldaret/tww.git
synced 2026-05-23 06:54:16 -04:00
24 lines
492 B
C++
24 lines
492 B
C++
#ifndef D_A_OBJ_MSDAN_H
|
|
#define D_A_OBJ_MSDAN_H
|
|
|
|
#include "f_op/f_op_actor.h"
|
|
|
|
namespace daObjMsdan {
|
|
class Act_c : public fopAc_ac_c {
|
|
public:
|
|
void prm_get_evId() const {}
|
|
void prm_get_size() const {}
|
|
void prm_get_sound() const {}
|
|
void prm_get_swSave() const {}
|
|
|
|
void Mthd_Create();
|
|
void Mthd_Execute();
|
|
void Mthd_Delete();
|
|
|
|
public:
|
|
/* Place member variables here */
|
|
};
|
|
};
|
|
|
|
#endif /* D_A_OBJ_MSDAN_H */
|