23 lines
275 B
C++
23 lines
275 B
C++
#include "stdafx.h"
|
|
#include "WiseCharacter.h"
|
|
|
|
WiseCharacter::WiseCharacter()
|
|
{
|
|
}
|
|
|
|
WiseCharacter::~WiseCharacter()
|
|
{
|
|
}
|
|
|
|
|
|
void WiseCharacter::Init()
|
|
{
|
|
m_IDXofSLOT = 0;
|
|
m_dwObjectKey = 0;
|
|
ZeroMemory(&m_CHARINFO, sizeof(m_CHARINFO));
|
|
}
|
|
|
|
void WiseCharacter::Release()
|
|
{
|
|
}
|