InspectorAttribute.cs 275 B

12345678910111213141516
  1. using System;
  2. namespace AtomicEngine
  3. {
  4. [AttributeUsage(AttributeTargets.Field)]
  5. public class InspectorAttribute : Attribute
  6. {
  7. public InspectorAttribute(string DefaultValue = "")
  8. {
  9. }
  10. public readonly string DefaultValue;
  11. }
  12. }