using System; using System.Collections.Generic; using System.Text; namespace Sunweaver.Commands.BinaryLogic { [Attributes.BasePair] public class or : Abstracts.BinaryBooleanLogic { public override void Operation(bool a, bool b) { VM.BoolStack.Push(a || b); } } }