1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-12-24 22:14:36 +02:00

Compile fixes.

This commit is contained in:
DjWarmonger 2012-12-15 09:04:55 +00:00
parent d2ee602b29
commit f05b398e5c
2 changed files with 4 additions and 2 deletions

View File

@ -3,8 +3,8 @@
#include <SDL.h>
#include "SDL_Extensions.h"
#include "CAnimation.h"
#include "UIFramework/CGuiHandler.h"
#include "../CAnimation.h"
#include "CGuiHandler.h"
/*
* CCursorHandler.cpp, part of VCMI engine

View File

@ -129,6 +129,7 @@ void CHeroClassHandler::load(const JsonNode & classes)
CHeroClass *CHeroClassHandler::loadClass(const JsonNode & heroClass)
{
//TODO
return new CHeroClass;
}
CHeroClassHandler::~CHeroClassHandler()
@ -156,6 +157,7 @@ void CHeroHandler::load(const JsonNode & heroes)
CHero * CHeroHandler::loadHero(const JsonNode & hero)
{
//TODO
return new CHero;
}
void CHeroHandler::load()