#pragma once #include "keyframe.h" #include class Animation { private: float length; std::vector keyframes_; public: Animation() = default; Animation(float seconds, std::vector keyframes); float getlength(); std::vectorgetkeyframe(); };