vgui_support: added VGUI_TextInput callback stub

This commit is contained in:
SNMetamorph
2022-04-27 22:39:15 +04:00
committed by a1batross
parent 87ceb0f9cb
commit 974f0787a4
3 changed files with 8 additions and 0 deletions

View File

@@ -83,4 +83,9 @@ void VGUI_MouseMove(int x, int y)
return;
pApp->internalCursorMoved( x, y, surface );
}
void VGUI_TextInput(const char *text)
{
// stub
}
}