123456789101112131415 |
- using System;
-
- namespace Unity.VisualScripting
- {
- [AttributeUsage(AttributeTargets.Class, AllowMultiple = false, Inherited = true)]
- public sealed class UnitShortTitleAttribute : Attribute
- {
- public UnitShortTitleAttribute(string title)
- {
- this.title = title;
- }
-
- public string title { get; private set; }
- }
- }
|