NativeWrapper.cs 682 B

12345678910111213141516171819
  1. //********************************** Banshee Engine (www.banshee3d.com) **************************************************//
  2. //**************** Copyright (c) 2018 Marko Pintera ([email protected]). All rights reserved. **********************//
  3. using System;
  4. namespace BansheeEngine
  5. {
  6. /** @addtogroup Serialization
  7. * @{
  8. */
  9. /// <summary>
  10. /// Attribute that signifies that property is a wrapper to some native value. It's getter/setter calls are native
  11. /// interop calls which then modify the internal value.
  12. /// </summary>
  13. [AttributeUsage(AttributeTargets.Property)]
  14. public sealed class NativeWrapper : Attribute { }
  15. /** @} */
  16. }