blob: 3da3611a78441f16f78ab8dcb5afcfc5fbbf7f14 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
#ifndef D_A_OBJ_SWFLAT_H
#define D_A_OBJ_SWFLAT_H
#include "d/d_bg_s_movebg_actor.h"
namespace daObjSwflat {
class Act_c : public dBgS_MoveBgActor {
public:
void prmGetSwNo() const {}
void prmGetSwNo2() const {}
void prmGetType() const {}
virtual BOOL CreateHeap();
virtual BOOL Create();
cPhs_State Mthd_Create();
virtual BOOL Delete();
BOOL Mthd_Delete();
void set_mtx();
void init_mtx();
virtual BOOL Execute(Mtx**);
virtual BOOL Draw();
virtual BOOL IsDelete();
public:
/* Place member variables here */
};
};
class daObjSwflat_HIO_c {
public:
daObjSwflat_HIO_c();
public:
/* Place member variables here */
};
#endif /* D_A_OBJ_SWFLAT_H */
|