summaryrefslogtreecommitdiffstats
path: root/src/ui/target.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/ui/target.h')
-rw-r--r--src/ui/target.h33
1 files changed, 20 insertions, 13 deletions
diff --git a/src/ui/target.h b/src/ui/target.h
index ae0c7af..05a3651 100644
--- a/src/ui/target.h
+++ b/src/ui/target.h
@@ -18,31 +18,38 @@
#pragma once
+#include <string>
#include "ui/control.h"
+#include "common/misc.h"
+#include "common/iman.h"
+#include "common/restext.h"
+#include "common/event.h"
-class CD3DEngine;
-class CObject;
+#include "graphics/engine/engine.h"
+#include "object/robotmain.h"
+#include "object/object.h"
+namespace Ui {
+
class CTarget : public CControl
{
-public:
- CTarget(CInstanceManager* iMan);
- ~CTarget();
-
- bool Create(Math::Point pos, Math::Point dim, int icon, EventMsg eventMsg);
+ public:
+ CTarget();
+ ~CTarget();
- bool EventProcess(const Event &event);
- void Draw();
- bool GetTooltip(Math::Point pos, char* name);
+ bool Create(Math::Point pos, Math::Point dim, int icon, EventType eventMsg);
-protected:
- CObject* DetectFriendObject(Math::Point pos);
+ bool EventProcess(const Event &event);
+ void Draw();
+ bool GetTooltip(Math::Point pos, std::string &name);
-protected:
+ protected:
+ CObject* DetectFriendObject(Math::Point pos);
};
+}