-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDynamicObject.cpp
More file actions
32 lines (23 loc) · 845 Bytes
/
Copy pathDynamicObject.cpp
File metadata and controls
32 lines (23 loc) · 845 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
// DynamicObject.cpp: implementation of the CDynamicObject class.
//
//////////////////////////////////////////////////////////////////////
#include "DynamicObject.h"
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
CDynamicObject::CDynamicObject(short sOwner, char cOwnerType, short sType, char cMapIndex, short sX, short sY, DWORD dwRegisterTime, DWORD dwLastTime, int iV1)
{
m_sOwner = sOwner;
m_cOwnerType = cOwnerType;
m_sType = sType;
m_cMapIndex = cMapIndex;
m_sX = sX;
m_sY = sY;
m_dwRegisterTime = dwRegisterTime;
m_dwLastTime = dwLastTime;
m_iCount = 0;
m_iV1 = iV1;
}
CDynamicObject::~CDynamicObject()
{
}