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
|
NS_CC_BEGIN
|
||||||
|
|
||||||
// Lua support for cocos2d-x
|
// Lua support for cocos2d-x
|
||||||
class CC_DLL CCLuaEngine : public CCScriptEngineProtocol
|
class CCLuaEngine : public CCScriptEngineProtocol
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
static CCLuaEngine* defaultEngine(void);
|
static CCLuaEngine* defaultEngine(void);
|
||||||
|
|
|
@ -35,7 +35,7 @@ extern "C" {
|
||||||
|
|
||||||
NS_CC_BEGIN
|
NS_CC_BEGIN
|
||||||
|
|
||||||
class CC_DLL CCLuaStack : public CCObject
|
class CCLuaStack : public CCObject
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
static CCLuaStack *create(void);
|
static CCLuaStack *create(void);
|
||||||
|
|
|
@ -74,7 +74,7 @@ typedef union {
|
||||||
CCObject* ccobjectValue;
|
CCObject* ccobjectValue;
|
||||||
} CCLuaValueField;
|
} CCLuaValueField;
|
||||||
|
|
||||||
class CC_DLL CCLuaValue
|
class CCLuaValue
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
static const CCLuaValue intValue(const int intValue);
|
static const CCLuaValue intValue(const int intValue);
|
||||||
|
|
Loading…
Reference in New Issue