Update renderd7.cpp

This commit is contained in:
tobid7 2021-11-21 21:40:08 +01:00 committed by GitHub
parent 569e82f476
commit 1bbefb259a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -798,3 +798,28 @@ void RenderD7::DrawMetrikOvl()
RenderD7::OnScreen(Top);
RenderD7::DrawText(0, 0, 0.6f, mt_color, "HI");
}
RenderD7::Console::Console(int x, int y, int w, int h, u8 a)
{
}
RenderD7::Console::Console(int x, int y, int w, int h, RenderD7::rgba col)
{
}
RenderD7::Console::Console(int x, int y, int w, int h, std::string name, RenderD7::rgba col, RenderD7::rgba barcol, RenderD7::rgba outlinecol)
{
}
RenderD7::Console::~Console()
{
}
void RenderD7::Console::On(C3D_RenderTarget *t_cscreen)
{
this->cscreen = t_cscreen;
}
bool RenderD7:: Console::Update()
{
}