static public int Rewind(IntPtr l) { try { FairyGUI.PlayState self = (FairyGUI.PlayState)checkSelf(l); self.Rewind(); pushValue(l, true); return(1); } catch (Exception e) { return(error(l, e)); } }
static int Rewind(IntPtr L) { try { ToLua.CheckArgsCount(L, 1); FairyGUI.PlayState obj = (FairyGUI.PlayState)ToLua.CheckObject <FairyGUI.PlayState>(L, 1); obj.Rewind(); return(0); } catch (Exception e) { return(LuaDLL.toluaL_exception(L, e)); } }