GlobalClockAttribute.cs 237 B

12345678
  1. using System;
  2. using UnityEngine;
  3. [AttributeUsage(AttributeTargets.Field | AttributeTargets.Property, AllowMultiple = false, Inherited = true)]
  4. public class GlobalClockAttribute : PropertyAttribute
  5. {
  6. public GlobalClockAttribute() { }
  7. }