tools/MissionsEditor/hedgehogedit.h
changeset 2596 41b46f83d088
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tools/MissionsEditor/hedgehogedit.h	Sun Nov 01 17:19:55 2009 +0000
@@ -0,0 +1,27 @@
+#ifndef HEDGEHOGEDIT_H
+#define HEDGEHOGEDIT_H
+
+#include <QtGui/QFrame>
+
+namespace Ui {
+    class HedgehogEdit;
+}
+
+class HedgehogEdit : public QFrame {
+    Q_OBJECT
+public:
+    HedgehogEdit(QWidget *parent = 0);
+    ~HedgehogEdit();
+
+    void setHedgehog(quint32 level = 0, quint32 health = 100, const QString & name = QString());
+    void setHat(const QString & name);
+    void setCoordinates(int x, int y);
+
+protected:
+    void changeEvent(QEvent *e);
+
+private:
+    Ui::HedgehogEdit *m_ui;
+};
+
+#endif // HEDGEHOGEDIT_H