Exemplo n.º 1
0
 static public int get_npc_id(IntPtr l)
 {
     try {
         GameFrameworkMessage.Msg_RC_DestroyNpc self = (GameFrameworkMessage.Msg_RC_DestroyNpc)checkSelf(l);
         pushValue(l, true);
         pushValue(l, self.npc_id);
         return(2);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
Exemplo n.º 2
0
 static public int constructor(IntPtr l)
 {
     try {
         GameFrameworkMessage.Msg_RC_DestroyNpc o;
         o = new GameFrameworkMessage.Msg_RC_DestroyNpc();
         pushValue(l, true);
         pushValue(l, o);
         return(2);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
Exemplo n.º 3
0
 static public int set_npc_id(IntPtr l)
 {
     try {
         GameFrameworkMessage.Msg_RC_DestroyNpc self = (GameFrameworkMessage.Msg_RC_DestroyNpc)checkSelf(l);
         int v;
         checkType(l, 2, out v);
         self.npc_id = v;
         pushValue(l, true);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }