using UnityEngine; namespace MoleMole { public interface IFrameHaltable { Vector3 XZPosition { get; } FixedStack timeScaleStack { get; } uint GetRuntimeID(); bool IsToBeRemove(); bool IsActive(); void FrameHalt(int frameNum); } }