AnimationClip.cs 604 B

12345678910111213141516171819202122
  1. //********************************** Banshee Engine (www.banshee3d.com) **************************************************//
  2. //**************** Copyright (c) 2016 Marko Pintera ([email protected]). All rights reserved. **********************//
  3. using System;
  4. using System.Runtime.CompilerServices;
  5. namespace BansheeEngine
  6. {
  7. /** @addtogroup Animation
  8. * @{
  9. */
  10. public class AnimationClip : Resource
  11. {
  12. /// <summary>
  13. /// Constructor for internal use by the runtime.
  14. /// </summary>
  15. private AnimationClip()
  16. { }
  17. }
  18. /** @} */
  19. }