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

11 lines
No EOL
318 B
C#

using System.Collections.Generic;
using WingsEmu.Game._packetHandling;
using WingsEmu.Game.Networking;
namespace WingsEmu.Game.RainbowBattle.Event;
public class RainbowBattleStartEvent : PlayerEvent
{
public List<IClientSession> RedTeam { get; init; }
public List<IClientSession> BlueTeam { get; init; }
}