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