open source

This commit is contained in:
lvfulong
2020-11-11 16:17:13 +08:00
parent 4d989f3ecb
commit bc4ca748de
2441 changed files with 623057 additions and 2 deletions
@@ -0,0 +1,41 @@
/**
@file JSKeyframeNode.h
@brief
@author James
@version 1.0
@date 2018_7_12
*/
#ifndef __JSKeyframeNode_H__
#define __JSKeyframeNode_H__
#include <stdio.h>
#include <string>
#include <map>
#include "../JSObjBase.h"
#include <vector>
#include "JSFloatKeyframe.h"
#include "JSFloatArrayKeyframe.h"
#include "../Animation/JCKeyframeNode.h"
#include <JavaScriptCore/JavaScriptCore.h>
namespace laya
{
class JSKeyframeNode : public JCListNode, public JCKeyframeNode
{
public:
static void exportJS(JSContextRef ctx, JSObjectRef object);
JSKeyframeNode();
~JSKeyframeNode();
};
}
//------------------------------------------------------------------------------
#endif //__JSKeyframeNode_H__
//-----------------------------END FILE--------------------------------