8 lines
279 B
C++
8 lines
279 B
C++
|
#include "../../src/Battling/Library/DamageLibrary.hpp"
|
||
|
#include "../Core.hpp"
|
||
|
using namespace PkmnLib::Battling;
|
||
|
|
||
|
export DamageLibrary* PkmnLib_DamageLibrary_Construct() { return new DamageLibrary(); }
|
||
|
|
||
|
export void PkmnLib_DamageLibrary_Destruct(DamageLibrary* p) { delete p; }
|