14 lines
No EOL
420 B
C#
14 lines
No EOL
420 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using WingsEmu.Game._i18n;
|
|
using WingsEmu.Game.GameEvent.Configuration;
|
|
using WingsEmu.Game.Networking;
|
|
|
|
namespace WingsEmu.Game.GameEvent.Matchmaking.Result;
|
|
|
|
public interface IMatchmakingResult
|
|
{
|
|
public List<Tuple<IGameEventConfiguration, List<IClientSession>>> Sessions { get; }
|
|
|
|
public Dictionary<GameDialogKey, List<IClientSession>> RefusedSessions { get; }
|
|
} |