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