Sleeping Wombat Common Library  0.50.0
swCommonLibrary
AnimationSet.h
Go to the documentation of this file.
1 #pragma once
2 
8 #include "Common/ParameterAnimation/Animation/IAnimation.h"
9 #include "Common/ParameterAnimation/Timelines/TimelineBase.h"
10 
11 #include <vector>
12 
13 
18 {
19 private:
20 protected:
21  std::vector< IAnimation* > m_animations;
22  std::vector< Ptr< TimelineBase > > m_timelines;
23 
24 public:
25  explicit AnimationSet() = default;
26  ~AnimationSet() = default;
27 
28 };
29 
30 
31 
Definition: AnimationSet.h:17