server-master/srcs/WingsAPI.Game/GameEvent/Matchmaking/Result/IMatchmakingResult.cs
2026-02-10 18:21:30 +01:00

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; }
}