/** @file JSFloatKeyframe.h @brief @author James @version 1.0 @date 2018_7_12 */ #ifndef __JSFloatKeyframe_H__ #define __JSFloatKeyframe_H__ #include #include #include #include "../Animation/JCKeyframeNode.h" #include "../JSObjBase.h" #include #include namespace laya { class JSFloatKeyframe : public JCListNode, public JCFloatKeyframe { public: static void exportJS(JSContextRef ctx, JSObjectRef object); JSFloatKeyframe(); ~JSFloatKeyframe(); }; } //------------------------------------------------------------------------------ #endif //__JSFloatKeyframe_H__ //-----------------------------END FILE--------------------------------