mirror of
https://gitlab.com/Nanolx/homebrewfilter.git
synced 2025-02-22 12:07:10 +01:00
17 lines
260 B
C
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;
|
||
|
|
||
|
};
|