1
0

Fixed compilation in VC2008.

Also removed an unused inline header file (yuck).
This commit is contained in:
madmaxoft
2013-12-30 17:41:59 +01:00
parent d724241407
commit ee15d4e08e
7 changed files with 13 additions and 79 deletions

View File

@@ -87,10 +87,9 @@ public:
virtual void SendTo(cClientHandle & a_Client) = 0;
/// Ticks the entity; returns true if the chunk should be marked as dirty as a result of this ticking. By default does nothing.
virtual bool Tick(float a_Dt, cChunk & a_Chunk)
virtual bool Tick(float a_Dt, cChunk & /* a_Chunk */)
{
UNUSED(a_Dt);
UNUSED(a_Chunk);
return false;
}