2012-04-26 14:32:17 +08:00
|
|
|
|
|
|
|
class CCProgressTo : public CCActionInterval
|
|
|
|
{
|
2012-08-10 18:14:04 +08:00
|
|
|
CCObject* copyWithZone(CCZone* pZone);
|
|
|
|
|
2012-06-15 11:46:51 +08:00
|
|
|
static CCProgressTo* create(float duration, float fPercent);
|
2012-04-26 14:32:17 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
class CCProgressFromTo : public CCActionInterval
|
|
|
|
{
|
2012-08-10 18:14:04 +08:00
|
|
|
CCObject* copyWithZone(CCZone* pZone);
|
|
|
|
|
2012-06-15 11:46:51 +08:00
|
|
|
static CCProgressFromTo* create(float duration, float fFromPercentage, float fToPercentage);
|
2012-04-26 14:32:17 +08:00
|
|
|
};
|