Example #1
0
 public BuiltinDelegate(BuiltinDelegate oldCopy)
     : base(oldCopy)
 {
     Name = oldCopy.Name;
 }
 public BuiltinDelegate(BuiltinDelegate oldCopy) : base(oldCopy)
 {
     Name = oldCopy.Name;
 }
Example #3
0
File: Misc.cs Project: KSP-KOS/KOS
        public override void Execute(SharedObjects shared)
        {
            string name = PopValueAssert(shared).ToString();
               AssertArgBottomAndConsume(shared);

               ReturnValue = new BuiltinDelegate(shared.Cpu, name);
        }