2025-05-03 14:18:12 +02:00

12 lines
279 B
C#

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