mirror of https://github.com/axmolengine/axmol.git
18 lines
289 B
C
18 lines
289 B
C
|
#ifndef __EASE_MANAGER_H__
|
||
|
#define __EASE_MANAGER_H__
|
||
|
|
||
|
#include "FairyGUIMacros.h"
|
||
|
#include "EaseType.h"
|
||
|
|
||
|
NS_FGUI_BEGIN
|
||
|
|
||
|
class EaseManager
|
||
|
{
|
||
|
public:
|
||
|
static float evaluate(EaseType easeType, float time, float duration, float overshootOrAmplitude, float period);
|
||
|
};
|
||
|
|
||
|
NS_FGUI_END
|
||
|
|
||
|
#endif
|