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

19 lines
No EOL
589 B
C#

using System.Collections.Generic;
using PhoenixLib.Events;
using WingsEmu.Game.GameEvent.Configuration;
using WingsEmu.Game.Networking;
namespace WingsEmu.Game.GameEvent.Event;
public class GameEventInstanceStartEvent : IAsyncEvent
{
public GameEventInstanceStartEvent(IEnumerable<IClientSession> sessions, IGameEventConfiguration gameEventConfiguration)
{
Sessions = sessions;
GameEventConfiguration = gameEventConfiguration;
}
public IEnumerable<IClientSession> Sessions { get; }
public IGameEventConfiguration GameEventConfiguration { get; }
}