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

12 lines
No EOL
311 B
C#

using WingsAPI.Scripting.Attribute;
using WingsAPI.Scripting.Object.Common.Map;
namespace WingsAPI.Scripting.Event.Common
{
[ScriptEvent(Name, true)]
public class SRemovePortalEvent : SEvent
{
public const string Name = "RemovePortal";
public SPortal Portal { get; set; }
}
}