Files
CreatureLib/src/Library/TalentLibrary.hpp
Deukhoofd 59313e6da8
All checks were successful
continuous-integration/drone/push Build is passing
Breaking change: rework of talents.
2021-11-15 12:04:58 +01:00

15 lines
384 B
C++

#ifndef CREATURELIB_TALENTLIBRARY_HPP
#define CREATURELIB_TALENTLIBRARY_HPP
#include "BaseLibrary.hpp"
#include "CreatureData/Talent.hpp"
namespace CreatureLib::Library {
class TalentLibrary : public BaseLibrary<Talent> {
public:
explicit TalentLibrary(size_t initialCapacity = 32) : BaseLibrary(initialCapacity){};
};
}
#endif // CREATURELIB_TALENTLIBRARY_HPP