| 12345678910111213141516171819202122 |
- //********************************** 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
- * @{
- */
-
- public class AnimationClip : Resource
- {
- /// <summary>
- /// Constructor for internal use by the runtime.
- /// </summary>
- private AnimationClip()
- { }
- }
- /** @} */
- }
|