using System; using System.Collections.Generic; using System.Text; using DNAModule.Sunweaver.DataPrototypes; using DNAModule.Sunweaver.Commands.Attributes; namespace DNAModule.Sunweaver.Commands { [BasePair] public class False : Abstracts.BasePair { public override void Implementation(VirtualMachine VM) { VM.BoolStack.Push(false); } public override string ToString() { return "false"; } } }