12 lines
282 B
C++
12 lines
282 B
C++
|
#ifndef PKMNLIB_AI_BUILDABILITIES_HPP
|
||
|
#define PKMNLIB_AI_BUILDABILITIES_HPP
|
||
|
|
||
|
#include <CreatureLib/Library/TalentLibrary.hpp>
|
||
|
|
||
|
class BuildAbilities {
|
||
|
public:
|
||
|
static CreatureLib::Library::TalentLibrary* Build(const std::string& path);
|
||
|
};
|
||
|
|
||
|
#endif // PKMNLIB_AI_BUILDABILITIES_HPP
|