feat(console): update SetGxCVars and UpdateGxCVars

This commit is contained in:
VDm 2025-03-29 23:13:58 +04:00
parent 758099c076
commit 28eecb2a09
5 changed files with 123 additions and 26 deletions

View file

@ -59,3 +59,15 @@ void GxFormatColor(CImVector& color) {
color = formattedColor;
}
}
void GxLogOpen() {
CGxDevice::LogOpen();
}
void GxLogClose() {
CGxDevice::LogClose();
}
void GxLog(const char* format, ...) {
// TODO
}