mirror of https://github.com/axmolengine/axmol.git
11 lines
294 B
Plaintext
11 lines
294 B
Plaintext
|
|
||
|
class CCProgressTo : public CCActionInterval
|
||
|
{
|
||
|
static CCProgressTo* actionWithDuration(ccTime duration, float fPercent);
|
||
|
};
|
||
|
|
||
|
class CCProgressFromTo : public CCActionInterval
|
||
|
{
|
||
|
static CCProgressFromTo* actionWithDuration(ccTime duration, float fFromPercentage, float fToPercentage);
|
||
|
};
|