using GeometryTD.Definition; namespace GeometryTD.CustomComponent { internal interface IPhaseEndCondition { PhaseEndType EndType { get; } bool ShouldExit(in PhaseEndConditionContext context); } }