0ad/source/ps/Player.cpp
olsner 4d9c7684df w00t! first batch of actual network support!
This was SVN commit r1006.
2004-08-16 15:19:17 +00:00

13 lines
205 B
C++
Executable file

#include "precompiled.h"
#include "Player.h"
#include "Network/NetMessage.h"
CPlayer::CPlayer(uint playerID):
m_PlayerID(playerID)
{}
bool CPlayer::ValidateCommand(CNetMessage *pMsg)
{
return true;
}