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