12 lines
311 B
C#
12 lines
311 B
C#
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);
|
|
} |