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
|
|
|
|
2016-12-04 14:04:30 +00:00
|
|
|
/*
|
|
|
|
=================
|
|
|
|
CSQC_UpdateView
|
|
|
|
|
|
|
|
Entry point for drawing on the client
|
|
|
|
=================
|
|
|
|
*/
|
2019-01-19 04:50:25 +00:00
|
|
|
void Cstrike_PreDraw(void)
|
|
|
|
{
|
2019-01-15 01:58:02 +00:00
|
|
|
|
2019-01-19 04:50:25 +00:00
|
|
|
Nightvision_PreDraw();
|
|
|
|
}
|
2019-01-03 01:26:39 +00:00
|
|
|
|
2019-01-19 04:50:25 +00:00
|
|
|
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
|
|
|
}
|