Files
Sun1602/Server/GameServer/Money.cpp
T
2022-10-26 12:25:11 +08:00

34 lines
572 B
C++

// Money.cpp: implementation of the Money class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "Money.h"
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
Money::Money()
{
}
Money::~Money()
{
}
BOOL Money::Init()
{
return NonCharacter::Init();
}
VOID Money::Release()
{
NonCharacter::Release();
}
BOOL Money::Update( DWORD dwDeltaTick )
{
return NonCharacter::Update( dwDeltaTick );
}