blob: e3a15939af2b50e20e8c29ac33495d2387bdb9c8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#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 {}
cPhs_State Mthd_Create();
BOOL Mthd_Execute();
BOOL Mthd_Delete();
public:
/* Place member variables here */
};
};
#endif /* D_A_OBJ_MSDAN_H */
|