homebrewfilter/source/Tools/textline.h
Christopher Roy Bratusek b109f70d82 UNIX line-endings FTW!
2011-09-27 21:52:55 +02:00

17 lines
260 B
C++

#include <string>
#include <vector>
using namespace std;
class TextLine
{
public:
void text(string text, int FontSize, int maxWidth);
void list(string text);
int text_up();
int text_down(int number);
std::vector<string> line;
int textScrollPos;
};