1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-11-24 08:32:34 +02:00
vcmi/CAbilityHandler.h
mateuszb ae279c79c5 * first version of player interface displaying
* taking some txt files from lods
* some minor changes
2007-08-04 19:01:22 +00:00

25 lines
440 B
C++

#ifndef CABILITYHANDLER_H
#define CABILITYHANDLER_H
#include <string>
#include <vector>
class CAbility
{
public:
std::string name;
std::string basicText;
std::string advText;
std::string expText;
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