summaryrefslogtreecommitdiff
path: root/AnimationMove.h
diff options
context:
space:
mode:
Diffstat (limited to 'AnimationMove.h')
-rw-r--r--AnimationMove.h31
1 files changed, 0 insertions, 31 deletions
diff --git a/AnimationMove.h b/AnimationMove.h
deleted file mode 100644
index 48a3b92..0000000
--- a/AnimationMove.h
+++ /dev/null
@@ -1,31 +0,0 @@
-#ifndef _ANIMATION_MOVE
-#define _ANIMATION_MOVE
-
-#include "Animation.h"
-
-struct AM_Linear {
- PixelRenderer callback;
- void* priv;
-
- i32 startRow;
- i32 startCol;
- float dRow;
- float dCol;
- bool wrapCoordinates;
-};
-
-ARGB AM_Linear(const Animation* anim, PixelRendererParams params);
-
-struct AM_Spin {
- PixelRenderer callback;
- void* priv;
-
- float theta;
- float dTheta;
- i32 centerRow;
- i32 centerCol;
-};
-
-ARGB AM_Spin(const Animation* anim, PixelRendererParams params);
-
-#endif /* _ANIMATION_MOVE */