static public int get_MobileInput(IntPtr l)
 {
     try {
         Core.RepresentLogic.InputManager self = (Core.RepresentLogic.InputManager)checkSelf(l);
         pushValue(l, true);
         pushValue(l, self.MobileInput);
         return(2);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
 static public int set_JoyStickVec(IntPtr l)
 {
     try {
         Core.RepresentLogic.InputManager self = (Core.RepresentLogic.InputManager)checkSelf(l);
         UnityEngine.Vector2 v;
         checkType(l, 2, out v);
         self.JoyStickVec = v;
         pushValue(l, true);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
 static public int set_MobileInput(IntPtr l)
 {
     try {
         Core.RepresentLogic.InputManager self = (Core.RepresentLogic.InputManager)checkSelf(l);
         System.Boolean v;
         checkType(l, 2, out v);
         self.MobileInput = v;
         pushValue(l, true);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }