server-master/srcs/WingsAPI.Game/Raids/RaidWave.cs
2026-02-10 18:21:30 +01:00

15 lines
No EOL
340 B
C#

using System.Collections.Generic;
namespace WingsEmu.Game.Raids;
public class RaidWave
{
public RaidWave(IEnumerable<ToSummon> monsters, short timeInSeconds)
{
Monsters = monsters;
TimeInSeconds = timeInSeconds;
}
public IEnumerable<ToSummon> Monsters { get; }
public short TimeInSeconds { get; }
}