homebrewfilter/source/textline.h
Christopher Roy Bratusek 6ac4d081a6 import rev0 (other stuff)
2012-04-07 20:04:32 +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;
};