PkmnLibSharp/PkmnLibSharp/Battling/Battle/BattleSide.cs

14 lines
282 B
C#

using PkmnLibSharp.Utilities;
namespace PkmnLibSharp.Battling
{
public class BattleSide : PointerWrapper
{
public BattleSide(){}
protected override void DeletePtr()
{
throw new System.NotImplementedException();
}
}
}