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