SerializeObject.cs 732 B

123456789101112131415161718192021
  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. /// Forces a class or a struct to be serializable. Normally only Component and Resource types are serialized
  11. /// but you can use this attribute to force arbitrary types to be serialized.
  12. /// </summary>
  13. [AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct)]
  14. public sealed class SerializeObject : Attribute
  15. {
  16. }
  17. /** @} */
  18. }