using System; namespace BansheeEngine { /// /// Attribute that prevents serialization of a field that would otherwise be serialized. Normally those fields /// are public fields of a , or a class marked with a /// attribute. /// [AttributeUsage(AttributeTargets.Field)] public sealed class DontSerializeField : Attribute { } }