mirror of https://github.com/axmolengine/axmol.git
Merge pull request #2480 from dumganhar/master
Don't export classes in scripting/lua/cocos2dx_support.
This commit is contained in:
commit
6d9fc055e4
|
@ -41,7 +41,7 @@ extern "C" {
|
|||
NS_CC_BEGIN
|
||||
|
||||
// Lua support for cocos2d-x
|
||||
class CC_DLL CCLuaEngine : public CCScriptEngineProtocol
|
||||
class CCLuaEngine : public CCScriptEngineProtocol
|
||||
{
|
||||
public:
|
||||
static CCLuaEngine* defaultEngine(void);
|
||||
|
|
|
@ -35,7 +35,7 @@ extern "C" {
|
|||
|
||||
NS_CC_BEGIN
|
||||
|
||||
class CC_DLL CCLuaStack : public CCObject
|
||||
class CCLuaStack : public CCObject
|
||||
{
|
||||
public:
|
||||
static CCLuaStack *create(void);
|
||||
|
|
|
@ -74,7 +74,7 @@ typedef union {
|
|||
CCObject* ccobjectValue;
|
||||
} CCLuaValueField;
|
||||
|
||||
class CC_DLL CCLuaValue
|
||||
class CCLuaValue
|
||||
{
|
||||
public:
|
||||
static const CCLuaValue intValue(const int intValue);
|
||||
|
|
Loading…
Reference in New Issue