Exemple #1
0
    public static int get_FrontOfYouWaitingNums(IntPtr l)
    {
        int result;

        try
        {
            TeamRoomAutoMatchNetTaskNetTask teamRoomAutoMatchNetTaskNetTask = (TeamRoomAutoMatchNetTaskNetTask)LuaObject.checkSelf(l);
            LuaObject.pushValue(l, true);
            LuaObject.pushValue(l, teamRoomAutoMatchNetTaskNetTask.FrontOfYouWaitingNums);
            result = 2;
        }
        catch (Exception e)
        {
            result = LuaObject.error(l, e);
        }
        return(result);
    }
Exemple #2
0
    public static int get_IsEnterRoom(IntPtr l)
    {
        int result;

        try
        {
            TeamRoomAutoMatchNetTaskNetTask teamRoomAutoMatchNetTaskNetTask = (TeamRoomAutoMatchNetTaskNetTask)LuaObject.checkSelf(l);
            LuaObject.pushValue(l, true);
            LuaObject.pushValue(l, teamRoomAutoMatchNetTaskNetTask.IsEnterRoom);
            result = 2;
        }
        catch (Exception e)
        {
            result = LuaObject.error(l, e);
        }
        return(result);
    }
Exemple #3
0
    public static int constructor(IntPtr l)
    {
        int result;

        try
        {
            GameFunctionType gameFunctionTypeId;
            LuaObject.checkEnum <GameFunctionType>(l, 2, out gameFunctionTypeId);
            int locationId;
            LuaObject.checkType(l, 3, out locationId);
            TeamRoomAutoMatchNetTaskNetTask o = new TeamRoomAutoMatchNetTaskNetTask(gameFunctionTypeId, locationId);
            LuaObject.pushValue(l, true);
            LuaObject.pushValue(l, o);
            result = 2;
        }
        catch (Exception e)
        {
            result = LuaObject.error(l, e);
        }
        return(result);
    }