server-master/srcs/_plugins/WingsEmu.Plugins.GameEvents/Event/Global/GameEventMatchmakeEvent.cs
2026-02-10 18:21:30 +01:00

13 lines
No EOL
417 B
C#

using System.Collections.Generic;
using WingsEmu.Game.GameEvent;
using WingsEmu.Game.Networking;
namespace WingsEmu.Plugins.GameEvents.Event.Global
{
public class GameEventMatchmakeEvent : GameEvent
{
public GameEventMatchmakeEvent(GameEventType gameEventType, List<IClientSession> sessions) : base(gameEventType) => Sessions = sessions;
public List<IClientSession> Sessions { get; }
}
}