using System; using System.Collections.Generic; using System.Reflection.Emit; using System.Text; using Sunweaver.Commands.Attributes; using Sunweaver.DataPrototypes; namespace Sunweaver.Commands { [BasePair] public class False : Abstracts.BasePair { public override void Implementation(VirtualMachine VM) { VM.BoolStack.Push(false); } public override string ToString() { return "false"; } internal override void Compile(ILGenerator il, Locals locals) { throw new NotImplementedException(); } } }