15 lines
208 B
C#
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();
|
|
}
|