mirror of
https://github.com/blanking003/cx-cocos.git
synced 2024-12-26 03:39:06 +00:00
16 lines
270 B
C++
16 lines
270 B
C++
|
|
#pragma once
|
|
|
|
#include "cxDefine.h"
|
|
|
|
#if CC_PLATFORM != CC_PLATFORM_ANDROID
|
|
extern NativeIntfClass* createAppNativeClass(std::string classname);
|
|
#endif
|
|
|
|
class NativeCreator
|
|
{
|
|
public:
|
|
static NativeIntfClass* createNativeClass(std::string classname);
|
|
};
|
|
|