using System; using System.Collections.Generic; using System.Text; using DNAModule.Sunweaver.Commands.Attributes; namespace DNAModule.Sunweaver.Commands.UnaryMath { [BasePair] public class @ref : Abstracts.UnaryOperation { public override void Operation(long a) { VM.Stack.Push(VM.mem[(int)(a % 1000)]); } } }