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