2020-02-29 13:09:03 +00:00
|
|
|
#include "../../src/Library/SpeciesLibrary.hpp"
|
2020-03-25 18:07:36 +00:00
|
|
|
#include "../Core.hpp"
|
2020-02-29 13:52:15 +00:00
|
|
|
#include "BaseLibrary.cpp"
|
2020-02-29 16:21:36 +00:00
|
|
|
using namespace CreatureLib::Library;
|
2020-02-29 13:09:03 +00:00
|
|
|
|
2020-02-29 16:21:36 +00:00
|
|
|
export const SpeciesLibrary* CreatureLib_SpeciesLibrary_Construct(size_t initialCapacity = 32) {
|
|
|
|
return new SpeciesLibrary(initialCapacity);
|
2020-02-29 13:09:03 +00:00
|
|
|
};
|
|
|
|
|
2020-02-29 16:21:36 +00:00
|
|
|
export void CreatureLib_SpeciesLibrary_Destruct(const SpeciesLibrary* p) { delete p; }
|
2020-02-29 13:09:03 +00:00
|
|
|
|
2020-02-29 16:21:36 +00:00
|
|
|
BASELIBRARY(CreatureLib_SpeciesLibrary, SpeciesLibrary, CreatureSpecies);
|