namespace PkmnLib.Dynamic.ScriptHandling; /// /// Helper interface for weather scripts. /// public interface IWeatherScript { /// /// Sets the number of turns the weather will last. /// public void SetTurns(int turns); }