Breaking change: rework of talents.
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
14
src/Library/TalentLibrary.hpp
Normal file
14
src/Library/TalentLibrary.hpp
Normal file
@@ -0,0 +1,14 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user