mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-15 01:11:27 +00:00
4491ce213b
The client state that was accessed by cl_screen is now put in viewstate and maintained by the client before calling CL_UpdateScreen.
10 lines
213 B
C
10 lines
213 B
C
#ifndef __client_screen_h
|
|
#define __client_screen_h
|
|
|
|
extern struct view_s cl_screen_view;
|
|
|
|
struct viewstate_s;
|
|
void CL_Init_Screen (void);
|
|
void CL_UpdateScreen (struct viewstate_s *vs);
|
|
|
|
#endif//__client_screen_h
|