summaryrefslogtreecommitdiffstats
path: root/src/ui/compass.h
diff options
context:
space:
mode:
authorerihel <erihel@gmail.com>2012-08-21 20:55:03 +0200
committererihel <erihel@gmail.com>2012-08-21 20:55:03 +0200
commit4faa1b9c447485cd2086a4c7f7c3655042e5de83 (patch)
tree6b4b059b5129554df5596e0ad198501213b02957 /src/ui/compass.h
parent75a76e82529f9726772bff066748e764f88c6d85 (diff)
parent199768280816d56a3356a6c3d137df0a73dba62b (diff)
downloadcolobot-4faa1b9c447485cd2086a4c7f7c3655042e5de83.tar.gz
colobot-4faa1b9c447485cd2086a4c7f7c3655042e5de83.tar.bz2
colobot-4faa1b9c447485cd2086a4c7f7c3655042e5de83.zip
merged changes from michkon
Diffstat (limited to 'src/ui/compass.h')
-rw-r--r--src/ui/compass.h13
1 files changed, 8 insertions, 5 deletions
diff --git a/src/ui/compass.h b/src/ui/compass.h
index fcbf860..1d48907 100644
--- a/src/ui/compass.h
+++ b/src/ui/compass.h
@@ -1,5 +1,6 @@
// * This file is part of the COLOBOT source code
// * Copyright (C) 2001-2008, Daniel ROUX & EPSITEC SA, www.epsitec.ch
+// * Copyright (C) 2012, Polish Portal of Colobot (PPC)
// *
// * 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
@@ -21,14 +22,15 @@
#include "ui/control.h"
+namespace Gfx {
+class CEngine;
+}
-//class CEngine;
-
-
-
+namespace Ui {
class CCompass : public CControl
{
public:
+// CCompass(CInstanceManager* iMan);
CCompass();
virtual ~CCompass();
@@ -39,7 +41,7 @@ public:
void Draw();
void SetDirection(float dir);
- float RetDirection();
+ float GetDirection();
protected:
@@ -48,3 +50,4 @@ protected:
};
+}