nuclide/Source/client/cstrike/draw.c

26 lines
399 B
C
Raw Normal View History

2019-01-16 20:18:28 +00:00
/***
*
* Copyright (c) 2016-2019 Marco 'eukara' Hladik. All rights reserved.
*
* See the file LICENSE attached with the sources for usage details.
*
****/
2016-12-01 17:50:48 +00:00
/*
=================
CSQC_UpdateView
Entry point for drawing on the client
=================
*/
void Cstrike_PreDraw(void)
{
2019-01-15 01:58:02 +00:00
Nightvision_PreDraw();
}
void Cstrike_PostDraw(int x, int y, int w, int h)
{
Nightvision_PostDraw(x, y, w, h);
2016-12-01 17:50:48 +00:00
}