mirror of
https://github.com/vcmi/vcmi.git
synced 2025-07-15 01:24:45 +02:00
[mingw] finally fix broken compilation after rev 3183
This commit is contained in:
@ -294,6 +294,12 @@ CCallback::CCallback( CGameState * GS, boost::optional<TPlayerColor> Player, CCl
|
||||
unlockGsWhenWaiting = false;
|
||||
}
|
||||
|
||||
CCallback::~CCallback()
|
||||
{
|
||||
//trivial, but required. Don`t remove.
|
||||
}
|
||||
|
||||
|
||||
const CGPathNode * CCallback::getPathInfo( int3 tile )
|
||||
{
|
||||
if (!gs->map->isInTheMap(tile))
|
||||
|
@ -102,6 +102,7 @@ private:
|
||||
|
||||
public:
|
||||
CCallback(CGameState * GS, boost::optional<TPlayerColor> Player, CClient *C);
|
||||
virtual ~CCallback();
|
||||
|
||||
//client-specific functionalities (pathfinding)
|
||||
virtual const CGPathNode *getPathInfo(int3 tile); //uses main, client pathfinder info
|
||||
|
Reference in New Issue
Block a user