summaryrefslogtreecommitdiffstats
path: root/src/View/TopView.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/View/TopView.h')
-rw-r--r--src/View/TopView.h46
1 files changed, 46 insertions, 0 deletions
diff --git a/src/View/TopView.h b/src/View/TopView.h
new file mode 100644
index 0000000..c5af1de
--- /dev/null
+++ b/src/View/TopView.h
@@ -0,0 +1,46 @@
+/*
+ * TopView.h
+ *
+ * Copyright (C) 2008 Matthias Schiffer <matthias@gamezock.de>
+ *
+ * This program is free software: you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License as published by the
+ * Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+ * See the GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#ifndef ZOOMEDIT_TOPVIEW_H_
+#define ZOOMEDIT_TOPVIEW_H_
+
+#include "View.h"
+
+namespace ZoomEdit {
+
+namespace Data {
+class Room;
+}
+
+namespace View {
+
+class TopView : public View {
+ private:
+ void renderRoom(Data::Room *room);
+
+ public:
+ TopView(Data::Level *level0 = 0) : View(level0) {}
+
+ void render();
+};
+
+}
+}
+
+#endif /*ZOOMEDIT_TOPVIEW_H_*/