server-master/srcs/WingsAPI.Scripting/Event/Raid/SRaidIncreaseObjectiveEvent.cs
2026-02-10 18:21:30 +01:00

17 lines
No EOL
473 B
C#

using WingsAPI.Scripting.Attribute;
using WingsAPI.Scripting.Enum;
namespace WingsAPI.Scripting.Event.Raid
{
/// <summary>
/// Object representation of IncreaseObjectiveEvent
/// </summary>
[ScriptEvent("RaidIncreaseObjective", true)]
public class SRaidIncreaseObjectiveEvent : SEvent
{
/// <summary>
/// Type of objective increased
/// </summary>
public SObjectiveType ObjectiveType { get; set; }
}
}