summaryrefslogtreecommitdiff
path: root/src/engine.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/engine.h')
-rw-r--r--src/engine.h10
1 files changed, 1 insertions, 9 deletions
diff --git a/src/engine.h b/src/engine.h
index df25af69..6454e890 100644
--- a/src/engine.h
+++ b/src/engine.h
@@ -49,12 +49,12 @@
extern char speech[255];
extern char npc_text[1000];
extern char skill_points[10];
-extern ChatBox *chatBox;
extern bool show_skill_dialog, show_skill_list_dialog;
extern int show_npc_dialog;
extern int map_x, map_y, camera_x, camera_y;
extern char npc_button[10];
+extern ChatWindow *chatWindow;
extern StatusWindow *statusWindow;
extern BuyDialog *buyDialog;
extern SellDialog *sellDialog;
@@ -74,14 +74,6 @@ char get_x_offset(char, char);
char get_y_offset(char, char);
/**
- * The action listener for the chat field.
- */
-class ChatListener : public gcn::ActionListener {
- public:
- void action(const std::string& eventId);
-};
-
-/**
* Game engine that does the main drawing.
*/
class Engine {