mirror of
https://github.com/vcmi/vcmi.git
synced 2024-12-26 22:57:00 +02:00
5222be8d94
* new folder structure
25 lines
440 B
C++
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 |