Exemplo n.º 1
0
 static public int get_Property(IntPtr l)
 {
     try {
         SkillSystem.InplaceSkillPropertyInfo self = (SkillSystem.InplaceSkillPropertyInfo)checkSelf(l);
         pushValue(l, true);
         pushValue(l, self.Property);
         return(2);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
Exemplo n.º 2
0
 static public int constructor(IntPtr l)
 {
     try {
         SkillSystem.InplaceSkillPropertyInfo o;
         o = new SkillSystem.InplaceSkillPropertyInfo();
         pushValue(l, true);
         pushValue(l, o);
         return(2);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
Exemplo n.º 3
0
 static public int set_Property(IntPtr l)
 {
     try {
         SkillSystem.InplaceSkillPropertyInfo self = (SkillSystem.InplaceSkillPropertyInfo)checkSelf(l);
         SkillSystem.IProperty v;
         checkType(l, 2, out v);
         self.Property = v;
         pushValue(l, true);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }