aboutsummaryrefslogtreecommitdiff
path: root/Artist.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Artist.cpp')
-rw-r--r--Artist.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/Artist.cpp b/Artist.cpp
new file mode 100644
index 0000000..a01f9e2
--- /dev/null
+++ b/Artist.cpp
@@ -0,0 +1,7 @@
+#include "Artist.h"
+
+void Artist::update() {
+ this->data.x += this->data.vx;
+ this->data.y += this->data.vy;
+}
+