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,12 @@
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace _Project.Develop.Runtime.Utilities.Conditions
{
public interface ICondition
{
bool Evaluate();
}
}