2020-02-29 13:52:15 +00:00
|
|
|
#include "../../src/Library/ItemLibrary.hpp"
|
2020-07-31 08:51:03 +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:52:15 +00:00
|
|
|
|
2022-04-02 10:33:26 +00:00
|
|
|
export_func const ItemLibrary* CreatureLib_ItemLibrary_Construct(size_t initialCapacity = 32) {
|
2020-02-29 16:21:36 +00:00
|
|
|
return new ItemLibrary(initialCapacity);
|
2020-02-29 13:52:15 +00:00
|
|
|
};
|
|
|
|
|
2022-04-02 10:33:26 +00:00
|
|
|
export_func void CreatureLib_ItemLibrary_Destruct(const ItemLibrary* p) { delete p; }
|
2020-02-29 13:52:15 +00:00
|
|
|
|
2020-02-29 16:21:36 +00:00
|
|
|
BASELIBRARY(CreatureLib_ItemLibrary, ItemLibrary, Item);
|