aboutsummaryrefslogtreecommitdiffstats
path: root/include/YAGE/spritesheet.h
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2017-09-05 19:41:45 +0100
committerYann Herklotz <ymherklotz@gmail.com>2017-09-05 19:41:45 +0100
commit268cac0f0f5812149a4b4a0d894a100d711a493c (patch)
treecc6df6a0de2217ba177a735cb8fa116bfcdb5237 /include/YAGE/spritesheet.h
parent81b2d1591d348ee7972d174a2ba2dee8dc7cea96 (diff)
downloadYAGE-268cac0f0f5812149a4b4a0d894a100d711a493c.tar.gz
YAGE-268cac0f0f5812149a4b4a0d894a100d711a493c.zip
Travis CI testing
Diffstat (limited to 'include/YAGE/spritesheet.h')
-rw-r--r--include/YAGE/spritesheet.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/include/YAGE/spritesheet.h b/include/YAGE/spritesheet.h
new file mode 100644
index 00000000..2b70ad8b
--- /dev/null
+++ b/include/YAGE/spritesheet.h
@@ -0,0 +1,25 @@
+/* ----------------------------------------------------------------------------
+ * spritesheet.h
+ *
+ * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com>
+ * MIT License, see LICENSE file for more details.
+ * ----------------------------------------------------------------------------
+ */
+
+#ifndef YAGE_SPRITESHEET_H
+#define YAGE_SPRITESHEET_H
+
+#include "texture.h"
+
+namespace yage
+{
+
+class SpriteSheet
+{
+private:
+ Texture texture_;
+};
+
+} // namespace yage
+
+#endif