summaryrefslogtreecommitdiff
path: root/engine/background.h
diff options
context:
space:
mode:
authorVegard Storheil Eriksen <zyp@jvnv.net>2010-06-26 18:06:40 +0200
committerVegard Storheil Eriksen <zyp@jvnv.net>2010-06-26 18:06:40 +0200
commitc9e914eeaa624cfa796bdea13ebb1056dfda5c9b (patch)
tree2d0ec8d1a9da3b20d7d033cd5407a31f14cf4511 /engine/background.h
parentfd7869d603f3a7c17ece6b72cc1ae2652fbf5d58 (diff)
Create a seperate Background class for stage background.
Diffstat (limited to 'engine/background.h')
-rw-r--r--engine/background.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/engine/background.h b/engine/background.h
new file mode 100644
index 0000000..4c294c8
--- /dev/null
+++ b/engine/background.h
@@ -0,0 +1,9 @@
+#ifndef BACKGROUND_H
+#define BACKGROUND_H
+
+class Background {
+ public:
+ void draw();
+};
+
+#endif