A game about forced loneliness, made by TACStudios
1using System; 2 3namespace Unity.VisualScripting 4{ 5 [AttributeUsage(AttributeTargets.Class, AllowMultiple = false, Inherited = true)] 6 public sealed class UnitOrderAttribute : Attribute 7 { 8 public UnitOrderAttribute(int order) 9 { 10 this.order = order; 11 } 12 13 public int order { get; private set; } 14 } 15}