#ifndef TEXTBOX_H #define TEXTBOX_H #include #include class textboxclass { public: textboxclass(void); void centerx(void); void centery(void); void adjust(void); void initcol(int rr, int gg, int bb); void update(void); void remove(void); void removefast(void); void resize(void); void addline(const std::string& t); public: //Fundamentals std::vector lines; int xp, yp, w, h; int r,g,b; int timer; float tl; float prev_tl; int tm; /* Whether to flip text box y-position in Flip Mode. */ bool flipme; int rand; }; #endif /* TEXTBOX_H */