| 1234567891011121314151617181920212223242526 |
- //********************************** Banshee Engine (www.banshee3d.com) **************************************************//
- //**************** Copyright (c) 2016 Marko Pintera ([email protected]). All rights reserved. **********************//
- using System;
- using System.Runtime.CompilerServices;
- namespace BansheeEngine
- {
- /** @addtogroup Animation
- * @{
- */
- /// <summary>
- /// Contains animation curves for translation/rotation/scale of scene objects/skeleton bones, as well as curves for
- /// generic property animation.
- /// </summary>
- public class AnimationClip : Resource
- {
- /// <summary>
- /// Constructor for internal use by the runtime.
- /// </summary>
- private AnimationClip()
- { }
- }
- /** @} */
- }
|