From 15740faf9fe9fe4be08965098bbf2947e096aeeb Mon Sep 17 00:00:00 2001 From: chai Date: Wed, 14 Aug 2019 22:50:43 +0800 Subject: +Unity Runtime code --- Runtime/Animation/BaseAnimationTrack.h | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 Runtime/Animation/BaseAnimationTrack.h (limited to 'Runtime/Animation/BaseAnimationTrack.h') diff --git a/Runtime/Animation/BaseAnimationTrack.h b/Runtime/Animation/BaseAnimationTrack.h new file mode 100644 index 0000000..c3f2b40 --- /dev/null +++ b/Runtime/Animation/BaseAnimationTrack.h @@ -0,0 +1,21 @@ +#if UNITY_EDITOR +#ifndef BASEANIMATIONTRACK_H +#define BASEANIMATIONTRACK_H + +#include "Runtime/BaseClasses/NamedObject.h" + +template class AnimationCurveTpl; +typedef AnimationCurveTpl AnimationCurve; + +class BaseAnimationTrack : public NamedObject +{ + public: + + REGISTER_DERIVED_ABSTRACT_CLASS (BaseAnimationTrack, NamedObject) + + BaseAnimationTrack(MemLabelId label, ObjectCreationMode mode); + // ~BaseAnimationTrack (); declared-by-macro +}; + +#endif +#endif -- cgit v1.1-26-g67d0