(menu_animation) Cleanups

This commit is contained in:
twinaphex 2015-09-27 00:42:27 +02:00
parent a731f18fa2
commit c8519cd89c
2 changed files with 11 additions and 11 deletions

View File

@ -30,9 +30,9 @@ struct tween
float running_since; float running_since;
float initial_value; float initial_value;
float target_value; float target_value;
float* subject; float *subject;
int tag; int tag;
easingFunc easing; easing_cb easing;
tween_cb cb; tween_cb cb;
}; };

View File

@ -29,7 +29,7 @@
extern "C" { extern "C" {
#endif #endif
typedef float (*easingFunc)(float, float, float, float); typedef float (*easing_cb) (float, float, float, float);
typedef void (*tween_cb) (void); typedef void (*tween_cb) (void);
enum menu_animation_ctl_state enum menu_animation_ctl_state