Inheritance: global::ProtoBuf.IExtensible
Exemplo n.º 1
0
 static public int get_m_Result(IntPtr l)
 {
     try {
         GameFrameworkMessage.Msg_LC_PublishNotice self = (GameFrameworkMessage.Msg_LC_PublishNotice)checkSelf(l);
         pushValue(l, true);
         pushEnum(l, (int)self.m_Result);
         return(2);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
Exemplo n.º 2
0
 static public int constructor(IntPtr l)
 {
     try {
         GameFrameworkMessage.Msg_LC_PublishNotice o;
         o = new GameFrameworkMessage.Msg_LC_PublishNotice();
         pushValue(l, true);
         pushValue(l, o);
         return(2);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
Exemplo n.º 3
0
 static public int set_m_Result(IntPtr l)
 {
     try {
         GameFrameworkMessage.Msg_LC_PublishNotice self = (GameFrameworkMessage.Msg_LC_PublishNotice)checkSelf(l);
         GameFrameworkMessage.GmResultEnum         v;
         checkEnum(l, 2, out v);
         self.m_Result = v;
         pushValue(l, true);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }