2021-11-27 09:37:12 +00:00
|
|
|
#include "../../src/Library/TalentLibrary.hpp"
|
|
|
|
#include "../Core.hpp"
|
|
|
|
#include "BaseLibrary.cpp"
|
|
|
|
|
|
|
|
using namespace CreatureLib::Library;
|
|
|
|
|
2022-04-02 10:33:26 +00:00
|
|
|
export_func u8 CreatureLib_TalentLibrary_Construct(TalentLibrary*& library, size_t initialCapacity = 32) {
|
2021-11-27 09:37:12 +00:00
|
|
|
Try(library = new TalentLibrary(initialCapacity);)
|
|
|
|
};
|
|
|
|
|
2022-04-02 10:33:26 +00:00
|
|
|
export_func void CreatureLib_TalentLibrary_Destruct(const TalentLibrary* p) { delete p; }
|
2021-11-27 09:37:12 +00:00
|
|
|
|
|
|
|
BASELIBRARY(CreatureLib_TalentLibrary, TalentLibrary, Talent);
|