1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-02-19 19:10:20 +02:00
vcmi/hch/CAbilityHandler.h
mateuszb ba9b58d3a4 * moved graphics from CAbilityHandler to Graphics
* reading BALLIST.TXT
* minor changes
2009-02-06 14:15:45 +00:00

26 lines
367 B
C++

#ifndef __CABILITYHANDLER_H__
#define __CABILITYHANDLER_H__
#include <string>
#include <vector>
class CDefHandler;
class CAbility
{
public:
int idNumber;
bool isAllowed; //true if we can use this hero's ability (map information)
};
class CAbilityHandler
{
public:
std::vector<CAbility *> abilities;
void loadAbilities();
};
#endif // __CABILITYHANDLER_H__