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,8 @@
namespace _Project.Develop.Runtime.Utilities.Conditions
{
public class LogicOperationsUtils
{
public static bool And(bool a, bool b) => a && b;
public static bool Or(bool a, bool b) => a || b;
}
}