diff options
Diffstat (limited to 'src/client/map.h')
| -rw-r--r-- | src/client/map.h | 11 | 
1 files changed, 7 insertions, 4 deletions
| diff --git a/src/client/map.h b/src/client/map.h index a3d8709..1fc1547 100644 --- a/src/client/map.h +++ b/src/client/map.h @@ -1,7 +1,7 @@  /*     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  +   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__ @@ -11,7 +11,8 @@  #include "ui/label.h"  #include "core/entity.h" -namespace client { +namespace client +{  class Map : public ui::Window  { @@ -19,7 +20,9 @@ public:  	Map(ui::Widget *parent = 0);  	virtual ~Map(); -	inline unsigned int hover() const { return map_hover; } +	inline unsigned int hover() const { +		return map_hover; +	}  	/// toggle the map window  	void toggle(); | 
