aboutsummaryrefslogtreecommitdiffstats
path: root/tests/rendertest.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/rendertest.h')
-rw-r--r--tests/rendertest.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/tests/rendertest.h b/tests/rendertest.h
new file mode 100644
index 00000000..c239338f
--- /dev/null
+++ b/tests/rendertest.h
@@ -0,0 +1,19 @@
+/* ----------------------------------------------------------------------------
+ * renderingtest.h
+ *
+ * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com> -- MIT License
+ * See file LICENSE for more details
+ * ----------------------------------------------------------------------------
+ */
+
+#include <string>
+
+class RenderTest
+{
+public:
+ RenderTest(std::string sprite);
+ void render();
+
+private:
+ std::string sprite_;
+};