TagAttribute.cs 288 B

1234567891011121314
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. namespace KairoEngine.Core
  5. {
  6. /// <summary>
  7. /// Attribute to select a single tag.
  8. /// </summary>
  9. public class TagAttribute : PropertyAttribute
  10. {
  11. // NOTHING - just oxygen.
  12. }
  13. }