summaryrefslogtreecommitdiffstats
path: root/src/ui/gauge.h
diff options
context:
space:
mode:
authorMichał Konopacki <konopacki.m@gmail.com>2012-08-18 22:56:42 +0200
committerMichał Konopacki <konopacki.m@gmail.com>2012-08-18 22:56:42 +0200
commit574c07e388dfd902b6565bc4a5ac9b915c73074e (patch)
tree65846a6bd77542a5e7271ff8cc4bfa77bda477a5 /src/ui/gauge.h
parent10b2c562fb7635f9850f1441f08ba8b1a71e31e1 (diff)
downloadcolobot-574c07e388dfd902b6565bc4a5ac9b915c73074e.tar.gz
colobot-574c07e388dfd902b6565bc4a5ac9b915c73074e.tar.bz2
colobot-574c07e388dfd902b6565bc4a5ac9b915c73074e.zip
Further improvements in UI porting
Diffstat (limited to 'src/ui/gauge.h')
-rw-r--r--src/ui/gauge.h12
1 files changed, 8 insertions, 4 deletions
diff --git a/src/ui/gauge.h b/src/ui/gauge.h
index 1686c56..b745834 100644
--- a/src/ui/gauge.h
+++ b/src/ui/gauge.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,15 +22,17 @@
#include "ui/control.h"
+namespace Gfx{
+class CEngine;
+};
-//class CD3DEngine;
-
-
+namespace Ui {
class CGauge : public CControl
{
public:
- CGauge(CInstanceManager* iMan);
+// CGauge(CInstanceManager* iMan);
+ CGauge();
virtual ~CGauge();
bool Create(Math::Point pos, Math::Point dim, int icon, EventType eventType);
@@ -48,3 +51,4 @@ protected:
};
+}