More moves implemented

This commit is contained in:
2025-05-05 11:36:59 +02:00
parent 11ba3c73bb
commit 292c303fc0
39 changed files with 818 additions and 68 deletions

View File

@@ -0,0 +1,12 @@
namespace PkmnLib.Dynamic.ScriptHandling;
/// <summary>
/// Helper interface for scripts that have a limited number of turns.
/// </summary>
public interface ILimitedTurnsScript
{
/// <summary>
/// Sets the number of turns the script will last.
/// </summary>
public void SetTurns(int turns);
}