server-master/srcs/WingsAPI.Scripting/Object/Common/Map/SMonsterWave.cs
2026-02-10 18:21:30 +01:00

19 lines
No EOL
441 B
C#

using System.Collections.Generic;
using WingsAPI.Scripting.Attribute;
namespace WingsAPI.Scripting.Object.Common.Map
{
[ScriptObject]
public class SMonsterWave
{
public short TimeInSeconds { get; set; }
public IEnumerable<SMonster> Monsters { get; set; }
public bool Loop { get; set; }
public short? LoopTick { get; set; }
public bool IsScaledWithPlayerAmount { get; set; }
}
}