namespace PkmnLib.Dynamic.ScriptHandling; /// /// Helper interface for scripts that have a limited number of turns. /// public interface ILimitedTurnsScript { /// /// Gets the number of turns remaining for the script to last. /// public int TurnsRemaining { get; } /// /// Sets the number of turns the script will last. /// public void SetTurns(int turns); }