2025-05-13 19:22:01 +08:00

15 lines
208 B
C#

using System.Collections;
namespace EventParts;
public interface EventPart
{
EventController parent { get; set; }
bool parallel { get; set; }
Coroutine routine { get; set; }
IEnumerator Routine();
}