#ifndef _CHAT_H #define _CHAT_H #include #include #include #include using namespace std; class chat { private: vector vctChat; string strPrompt; string strEnteredInput; public: chat(void); ~chat(void); string getInput(); void draw(ALLEGRO_FONT *font, ALLEGRO_COLOR color); void addLine(string s); void clear(); bool handleEvent(ALLEGRO_EVENT e); }; #endif