mirror of https://github.com/axmolengine/axmol.git
issue #2322: Action now is inherited from Object and Clonable now.
This commit is contained in:
parent
195605c85d
commit
1b3d0c39ad
|
@ -46,7 +46,7 @@ enum {
|
|||
/**
|
||||
@brief Base class for Action objects.
|
||||
*/
|
||||
class CC_DLL Action : public Object//, public Clonable // XXX: Why not to make it be inherited from Clonable, please refer to https://groups.google.com/forum/?hl=en#!topic/cocos2d-js-devel/dGJYz9wIb4Q , but we need to find out the real reason why VS compiler generate linking errors.
|
||||
class CC_DLL Action : public Object, public Clonable
|
||||
{
|
||||
public:
|
||||
Action(void);
|
||||
|
|
Loading…
Reference in New Issue