2025-05-03 20:36:17 +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();
}