| 12345678910111213141516171819202122 |
- //********************************** Banshee Engine (www.banshee3d.com) **************************************************//
- //**************** Copyright (c) 2016 Marko Pintera ([email protected]). All rights reserved. **********************//
- using System;
- namespace BansheeEngine
- {
- /** @addtogroup Serialization
- * @{
- */
- /// <summary>
- /// Attribute that prevents serialization of a field that would otherwise be serialized. Normally those fields
- /// are public fields of a <see cref="Component"/>, <see cref="Resource"/> or a class marked with a
- /// <see cref="SerializeObject"/> attribute.
- /// </summary>
- [AttributeUsage(AttributeTargets.Field)]
- public sealed class DontSerializeField : Attribute
- {
- }
- /** @} */
- }
|