Files
project-entity/Assets/_Project/Develop/Runtime/Utilities/Conditions/ICompositeCondition.cs
2026-02-19 20:46:32 +05:00

12 lines
319 B
C#

using System;
namespace _Project.Develop.Runtime.Utilities.Conditions
{
public interface ICompositeCondition : ICondition
{
ICompositeCondition Add(ICondition condition, int order = 0, Func<bool, bool, bool> logicOperation = null);
ICompositeCondition Remove(ICondition condition);
}
}