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