11 lines
No EOL
318 B
C#
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; }
|
|
} |