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

14 lines
No EOL
399 B
C#

using WingsAPI.Scripting.Attribute;
namespace WingsAPI.Scripting.Object.Common.Map
{
[ScriptObject]
public class SItem : SMapObject
{
public short Vnum { get; set; }
public bool IsObjective { get; set; }
public bool IsRandomPosition { get; set; }
public bool IsRandomUniquePosition { get; set; }
public int? DanceDuration { get; set; }
}
}