AttributeAnimationInfo.cs 860 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. // WARNING - AUTOGENERATED - DO NOT EDIT
  2. //
  3. // Generated using `sharpie urho`
  4. //
  5. // AttributeAnimationInfo.cs
  6. //
  7. // Copyright 2015 Xamarin Inc. All rights reserved.
  8. using System;
  9. using System.Runtime.InteropServices;
  10. using System.Collections.Generic;
  11. using Urho.Urho2D;
  12. using Urho.Gui;
  13. using Urho.Resources;
  14. using Urho.IO;
  15. using Urho.Navigation;
  16. using Urho.Network;
  17. namespace Urho
  18. {
  19. /// <summary>
  20. /// Attribute animation instance.
  21. /// </summary>
  22. public unsafe partial class AttributeAnimationInfo : ValueAnimationInfo
  23. {
  24. unsafe partial void OnAttributeAnimationInfoCreated ();
  25. [Preserve]
  26. public AttributeAnimationInfo (IntPtr handle) : base (handle)
  27. {
  28. OnAttributeAnimationInfoCreated ();
  29. }
  30. [Preserve]
  31. protected AttributeAnimationInfo (UrhoObjectFlag emptyFlag) : base (emptyFlag)
  32. {
  33. OnAttributeAnimationInfoCreated ();
  34. }
  35. }
  36. }