mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-06-16 13:23:56 -07:00
13 lines
205 B
C++
Executable file
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;
|
|
}
|