Files
oak-editor/app/widget/keyframeview/keyframeview.h
T
itsmattkc 4cd5e103b8 merged KeyframeView and CurveView to use the same base class
These classes had a ton of similarities, so they've now been modified to use
a common base class.
2019-12-28 18:47:54 +11:00

18 lines
280 B
C++

#ifndef KEYFRAMEVIEW_H
#define KEYFRAMEVIEW_H
#include "keyframeviewbase.h"
class KeyframeView : public KeyframeViewBase
{
Q_OBJECT
public:
KeyframeView(QWidget* parent = nullptr);
public slots:
void AddKeyframe(NodeKeyframePtr key, int y);
};
#endif // KEYFRAMEVIEW_H