From 8138068d51cbff955de457c242c391bec5d0f163 Mon Sep 17 00:00:00 2001 From: Cerapter Date: Sun, 30 Sep 2018 00:11:42 +0200 Subject: [PATCH] I totally forgot this, it seems. --- aocharmovie.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/aocharmovie.h b/aocharmovie.h index b26bada..7ef7da3 100644 --- a/aocharmovie.h +++ b/aocharmovie.h @@ -25,6 +25,8 @@ public: void stop(); + void move(int ax, int ay); + void combo_resize(int w, int h); private: @@ -36,6 +38,10 @@ private: const int time_mod = 62; + // These are the X and Y values before they are fixed based on the sprite's width. + int x = 0; + int y = 0; + bool m_flipped = false; bool play_once = true;