DontSerializeField.cs 167 B

123456789
  1. using System;
  2. namespace BansheeEngine
  3. {
  4. [AttributeUsage(AttributeTargets.Field)]
  5. public sealed class DontSerializeField : Attribute
  6. {
  7. }
  8. }