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