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