Update renderd7.hpp

This commit is contained in:
tobid7 2021-11-27 11:26:53 +01:00 committed by GitHub
parent b35ed87573
commit a10e2aaab9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -261,8 +261,8 @@ namespace RenderD7
public:
Console();
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});
Console(int x, int y, int w, int h, RenderD7::rgba col);
Console(int x, int y, int w, int h, std::string name, RenderD7::rgba col = {255, 255, 255, 255}, RenderD7::rgba barcol = {0, 0, 0, 255}, RenderD7::rgba outlinecol = {222, 222, 222, 255});
void On(C3D_RenderTarget *t_cscreen);
bool Update();
~Console();
@ -273,9 +273,9 @@ namespace RenderD7
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};
RenderD7::rgba color = {255, 255, 255, 255};
RenderD7::rgba outlinecol = {222, 222, 222, 255};
RenderD7::rgba barcolor = {0, 0, 0, 255};
};
bool NameIsEndingWith(const std::string &name, const std::vector<std::string> &extensions);