Exemple #1
0
        static int _s_set_ClassType(RealStatePtr L)
        {
            try {
                ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);

                DCET.Model.EntityEventAttribute gen_to_be_invoked = (DCET.Model.EntityEventAttribute)translator.FastGetCSObj(L, 1);
                gen_to_be_invoked.ClassType = LuaAPI.xlua_tointeger(L, 2);
            } catch (System.Exception gen_e) {
                return(LuaAPI.luaL_error(L, "c# exception:" + gen_e));
            }
            return(0);
        }
Exemple #2
0
        static int __CreateInstance(RealStatePtr L)
        {
            try {
                ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
                if (LuaAPI.lua_gettop(L) == 2 && LuaTypes.LUA_TNUMBER == LuaAPI.lua_type(L, 2))
                {
                    int _classType = LuaAPI.xlua_tointeger(L, 2);

                    DCET.Model.EntityEventAttribute gen_ret = new DCET.Model.EntityEventAttribute(_classType);
                    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 DCET.Model.EntityEventAttribute constructor!"));
        }