d
This commit is contained in:
parent
d4e4dbc565
commit
d31f63a47e
@ -1,4 +1,4 @@
|
|||||||
#include "Click.hpp"
|
#include "Clock.hpp"
|
||||||
|
|
||||||
namespace rnd7{
|
namespace rnd7{
|
||||||
enum class TweenType : int {Position = 1, Color, Alpha};
|
enum class TweenType : int {Position = 1, Color, Alpha};
|
||||||
@ -8,5 +8,10 @@ namespace rnd7{
|
|||||||
enum class TweenDirection : int {Current, Forward, Backward};
|
enum class TweenDirection : int {Current, Forward, Backward};
|
||||||
|
|
||||||
enum class TweenState : int {Playing = 1, Stopped};
|
enum class TweenState : int {Playing = 1, Stopped};
|
||||||
|
class Tween
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
Tween(float from, float to, float duration, TweenLoop loop, TweenState state);
|
||||||
|
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
@ -877,4 +877,5 @@ bool RenderD7:: Console::Update()
|
|||||||
bool dr_sc = true;
|
bool dr_sc = true;
|
||||||
return dr_sc;
|
return dr_sc;
|
||||||
}
|
}
|
||||||
|
|
||||||
*/
|
*/
|
Loading…
Reference in New Issue
Block a user