SemVerAttribute.cs 279 B

123456789101112
  1. using UnityEngine;
  2. namespace Artees.UnitySemVer
  3. {
  4. /// <summary>
  5. /// Indicates that a string is a semantic version. It looks like <see cref="SemVer"/> in the Unity's Inspector.
  6. /// </summary>
  7. public class SemVerAttribute : PropertyAttribute
  8. {
  9. }
  10. }