diff --git a/renderd7.hpp b/renderd7.hpp index a52ce8d..a9f7ca1 100644 --- a/renderd7.hpp +++ b/renderd7.hpp @@ -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 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};