server-master/srcs/_plugins/WingsEmu.Plugins.GameEvents/Configuration/InstantBattle/InstantBattleRequirement.cs
2026-02-10 18:21:30 +01:00

11 lines
No EOL
295 B
C#

using WingsEmu.Core;
namespace WingsEmu.Plugins.GameEvents.Configuration.InstantBattle
{
public class InstantBattleRequirement
{
public Range<short> Players { get; set; }
public Range<byte> Level { get; set; }
public Range<byte> HeroicLevel { get; set; }
}
}