PkmnLibSharp/PkmnLibSharp/Battling/Battle/ExecutingMove.cs

12 lines
246 B
C#

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