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.h35
1 files changed, 21 insertions, 14 deletions
diff --git a/src/ui/target.h b/src/ui/target.h
index ae0c7af..1f7f256 100644
--- a/src/ui/target.h
+++ b/src/ui/target.h
@@ -18,31 +18,38 @@
#pragma once
+#include <string>
-#include "ui/control.h"
+#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);
};
+}