Browse Source

Exposing AnimationTrack class as part of the public API

TheComet 9 years ago
parent
commit
b64f4a7c2e
1 changed files with 2 additions and 2 deletions
  1. 2 2
      Source/Urho3D/Graphics/Animation.h

+ 2 - 2
Source/Urho3D/Graphics/Animation.h

@@ -51,7 +51,7 @@ struct AnimationKeyFrame
 };
 
 /// Skeletal animation track, stores keyframes of a single bone.
-struct AnimationTrack
+struct URHO3D_API AnimationTrack
 {
     /// Construct.
     AnimationTrack() :
@@ -69,7 +69,7 @@ struct AnimationTrack
     void RemoveKeyFrame(unsigned index);
     /// Remove all keyframes.
     void RemoveAllKeyFrames();
-    
+
     /// Return keyframe at index, or null if not found.
     AnimationKeyFrame* GetKeyFrame(unsigned index);
     /// Return number of keyframes.