PkmnLib/CInterface/Battling/DamageLibrary.cpp

8 lines
279 B
C++
Raw Normal View History

2020-04-29 17:46:24 +00:00
#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; }