From 7de62efc14d0e0f037051bd887c96f28fd9a3215 Mon Sep 17 00:00:00 2001 From: Stijn Buys Date: Sun, 7 Dec 2008 09:03:10 +0000 Subject: add system map, prepare source tree for dataset reorganization --- src/client/map.h | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 src/client/map.h (limited to 'src/client/map.h') diff --git a/src/client/map.h b/src/client/map.h new file mode 100644 index 0000000..cbdc216 --- /dev/null +++ b/src/client/map.h @@ -0,0 +1,30 @@ +/* + client/map.h + This file is part of the Osirion project and is distributed under + the terms of the GNU General Public License version 2 +*/ + +#ifndef __INCLUDED_CLIENT_MAP_H__ +#define __INCLUDED_CLIENT_MAP_H__ + +#include "ui/widget.h" + +namespace client { + +class Map : public ui::Widget +{ +public: + Map(ui::Widget *parent = 0); + virtual ~Map(); + + void toggle(); + +protected: + virtual void draw(); +}; + + +} // namespace client + + +#endif // __INCLUDED_CLIENT_MAP_H__ -- cgit v1.2.3