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 True : Abstracts.BasePair { public override void Implementation(VirtualMachine VM) { VM.BoolStack.Push(true); } public override string ToString() { return "true"; } } }