Update renderd7.hpp
This commit is contained in:
parent
51822aef23
commit
569e82f476
@ -262,11 +262,16 @@ namespace RenderD7
|
||||
Console(int x, int y, int w, int h, int a = 255);
|
||||
Console(int x, int y, int w, int h, rgba col);
|
||||
Console(int x, int y, int w, int h, std::string name, rgba col = {255, 255, 255, 255}, rgba barcol = {0, 0, 0, 255}, rgba outlinecol = {222, 222, 222, 255});
|
||||
void On(C3D_RenderTarget *t_cscreen);
|
||||
bool Update();
|
||||
~Console();
|
||||
private:
|
||||
std::vector<std::string> m_lines;
|
||||
int x, y, w, h;
|
||||
u8 a;
|
||||
std::string m_name = "";
|
||||
C3D_RenderTarget *cscreen;
|
||||
bool m_nconsole = false;
|
||||
bool m_mconsole = false;
|
||||
rgba color = {255, 255, 255, 255};
|
||||
rgba outlinecol = {222, 222, 222, 255};
|
||||
rgba barcolor = {0, 0, 0, 255};
|
||||
|
Loading…
Reference in New Issue
Block a user