issue #2322: Action now is inherited from Object and Clonable now.

This commit is contained in:
James Chen 2013-06-23 17:22:23 +08:00
parent 195605c85d
commit 1b3d0c39ad
1 changed files with 1 additions and 1 deletions

View File

@ -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);