initial commit of local server code

This commit is contained in:
Max-Wilhelm Bruker 2010-08-04 13:56:51 +02:00
parent cbfbc542e7
commit 7921b5f82d
35 changed files with 143 additions and 365 deletions

View file

@ -196,8 +196,10 @@ bool Server_Player::deleteCounter(int counterId)
return true;
}
void Server_Player::sendProtocolItem(ProtocolItem *item, bool deleteItem)
bool Server_Player::sendProtocolItem(ProtocolItem *item, bool deleteItem)
{
if (handler)
handler->sendProtocolItem(item, deleteItem);
return handler->sendProtocolItem(item, deleteItem);
else
return true;
}