Create tween.hpp

This commit is contained in:
tobid7 2021-12-01 20:52:35 +01:00 committed by GitHub
parent 22b6f477ba
commit ca4de52619
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

12
internal/tween.hpp Normal file
View File

@ -0,0 +1,12 @@
#include "Click.hpp"
namespace rnd7{
enum class TweenType : int {Position = 1, Color, Alpha};
enum class TweenLoop : int {None = 1, Loop = 2,};
enum class TweenDirection : int {Current, Forward, Backward};
enum class TweenState : int {Playing = 1, Stopped};
}