Code/Shared/ISbokuCondition.cs
namespace Sandbox.Shared;
public interface ISbokuCondition
{
bool If();
void Then();
/// <summary>
/// Should we stop evaluating other conditions if the condition is true
/// </summary>
/// <returns></returns>
bool IsTerminal();
}