//********************************** Banshee Engine (www.banshee3d.com) **************************************************// //**************** Copyright (c) 2016 Marko Pintera (marko.pintera@gmail.com). All rights reserved. **********************// using System; namespace BansheeEngine { /** @addtogroup Serialization * @{ */ /// /// 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 { } /** @} */ }