using System.Collections; using System.Collections.Generic; using UnityEngine; namespace KairoEngine.Core { public interface IAction { void Start(); void Update(); void End(); bool IsDone(); } }