summaryrefslogtreecommitdiffstats
path: root/Level.h
diff options
context:
space:
mode:
authorneoraider <devnull@localhost>2007-09-17 00:24:02 +0200
committerneoraider <devnull@localhost>2007-09-17 00:24:02 +0200
commitd7a846e58a85ed311e83362af0b6474652d85c8a (patch)
tree965e42028a4eacb6790b908692dc321ddf5fc45f /Level.h
parent96e9d04527dc17a2a4f8c2f7034c1c356ed5186e (diff)
downloadzoomedit-d7a846e58a85ed311e83362af0b6474652d85c8a.tar
zoomedit-d7a846e58a85ed311e83362af0b6474652d85c8a.zip
zoomedit: Alle Datenstrukturen durch Klassen ersetzt.
Diffstat (limited to 'Level.h')
-rw-r--r--Level.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/Level.h b/Level.h
new file mode 100644
index 0000000..2c135ef
--- /dev/null
+++ b/Level.h
@@ -0,0 +1,11 @@
+#ifndef LEVEL_H_
+#define LEVEL_H_
+
+
+#include "Room.h"
+#include <vector>
+
+class Level : public std::vector<Room> {
+};
+
+#endif /*LEVEL_H_*/