-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathAttackEvent.h
More file actions
45 lines (36 loc) · 817 Bytes
/
AttackEvent.h
File metadata and controls
45 lines (36 loc) · 817 Bytes
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
38
39
40
41
42
43
44
45
// ------------------------------
// Decompiled by Deathway
// Date : 2007-05-09
// ------------------------------
#ifndef ATTACKEVENT_H
#define ATTACKEVENT_H
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#define MAX_ATTACK_EVENT_CREATE_MAP 2
class CAttackEvent
{
public:
CAttackEvent();
virtual ~CAttackEvent();
void Init();
void Start();
void End();
void Run();
void Active();
void Start_Menual();
void SetMenualStart(BOOL bMenualStart){this->m_bMenualStart = bMenualStart;}; // line : 39
void End_Menual();
private:
bool EventState; // 4
DWORD EventStartTime; // 8
BYTE m_MapNumber; // C
BYTE m_BossMap55; // 10
BYTE m_BossMapX55; // 14
BYTE m_BossMapY55; // 18
BYTE m_BossMap53; // 1C
BYTE m_BossMapX53; // 20
BYTE m_BossMapY53; // 24
BOOL m_bMenualStart; // 28
};
#endif