SubclassSelectorAttribute.cs 172 B

12345678
  1. using System;
  2. using UnityEngine;
  3. namespace DunGen
  4. {
  5. [AttributeUsage(AttributeTargets.Field)]
  6. public class SubclassSelectorAttribute : PropertyAttribute { }
  7. }