feat: add conditions

This commit is contained in:
Bragin Stepan
2026-02-19 20:46:32 +05:00
parent 4f01e66894
commit e07bde989a
17 changed files with 242 additions and 9 deletions

View File

@@ -0,0 +1,11 @@
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);
}
}