ConditionalPropertyAttribute.cs 254 B

12345678910111213
  1. using UnityEngine;
  2. namespace ARLocation {
  3. public class ConditionalPropertyAttribute : PropertyAttribute
  4. {
  5. public string Name;
  6. public ConditionalPropertyAttribute(string name)
  7. {
  8. Name = name;
  9. }
  10. }
  11. }