static int _g_get_HintText(RealStatePtr L)
        {
            try {
                ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);

                PackSystem.Tooltip gen_to_be_invoked = (PackSystem.Tooltip)translator.FastGetCSObj(L, 1);
                translator.Push(L, gen_to_be_invoked.HintText);
            } catch (System.Exception gen_e) {
                return(LuaAPI.luaL_error(L, "c# exception:" + gen_e));
            }
            return(1);
        }
        static int _s_set_HintText(RealStatePtr L)
        {
            try {
                ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);

                PackSystem.Tooltip gen_to_be_invoked = (PackSystem.Tooltip)translator.FastGetCSObj(L, 1);
                gen_to_be_invoked.HintText = (UnityEngine.UI.Text)translator.GetObject(L, 2, typeof(UnityEngine.UI.Text));
            } catch (System.Exception gen_e) {
                return(LuaAPI.luaL_error(L, "c# exception:" + gen_e));
            }
            return(0);
        }
        static int __CreateInstance(RealStatePtr L)
        {
            try {
                ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
                if (LuaAPI.lua_gettop(L) == 1)
                {
                    PackSystem.Tooltip gen_ret = new PackSystem.Tooltip();
                    translator.Push(L, gen_ret);

                    return(1);
                }
            }
            catch (System.Exception gen_e) {
                return(LuaAPI.luaL_error(L, "c# exception:" + gen_e));
            }
            return(LuaAPI.luaL_error(L, "invalid arguments to PackSystem.Tooltip constructor!"));
        }
        static int _m_ShowToolTip(RealStatePtr L)
        {
            try {
                ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);


                PackSystem.Tooltip gen_to_be_invoked = (PackSystem.Tooltip)translator.FastGetCSObj(L, 1);



                {
                    gen_to_be_invoked.ShowToolTip(  );



                    return(0);
                }
            } catch (System.Exception gen_e) {
                return(LuaAPI.luaL_error(L, "c# exception:" + gen_e));
            }
        }
        static int _m_SetPosition(RealStatePtr L)
        {
            try {
                ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);


                PackSystem.Tooltip gen_to_be_invoked = (PackSystem.Tooltip)translator.FastGetCSObj(L, 1);



                {
                    UnityEngine.Vector2 _position; translator.Get(L, 2, out _position);

                    gen_to_be_invoked.SetPosition(_position);



                    return(0);
                }
            } catch (System.Exception gen_e) {
                return(LuaAPI.luaL_error(L, "c# exception:" + gen_e));
            }
        }