2
0

SerializeField.cs 827 B

12345678910111213141516171819202122
  1. //********************************** Banshee Engine (www.banshee3d.com) **************************************************//
  2. //**************** Copyright (c) 2016 Marko Pintera ([email protected]). All rights reserved. **********************//
  3. using System;
  4. namespace BansheeEngine
  5. {
  6. /** @addtogroup Serialization
  7. * @{
  8. */
  9. /// <summary>
  10. /// Attribute that may be used on fields to mark them as serializable. Normally public fields are serialized
  11. /// by default, and you can use this attribute to mark private/protected/internal fields as serialized as well.
  12. /// Fields must be in a serializable object otherwise this attribute has no effect.
  13. /// </summary>
  14. [AttributeUsage(AttributeTargets.Field)]
  15. public sealed class SerializeField : Attribute
  16. {
  17. }
  18. /** @} */
  19. }