mirror of
				https://github.com/KartKrewDev/RingRacers.git
				synced 2025-10-30 08:01:28 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			42 lines
		
	
	
	
		
			1.1 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
	
		
			1.1 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| // SONIC ROBO BLAST 2
 | |
| //-----------------------------------------------------------------------------
 | |
| // Copyright (C) 1993-1996 by id Software, Inc.
 | |
| // Copyright (C) 1998-2000 by DooM Legacy Team.
 | |
| // Copyright (C) 1999-2020 by Sonic Team Junior.
 | |
| //
 | |
| // This program is free software distributed under the
 | |
| // terms of the GNU General Public License, version 2.
 | |
| // See the 'LICENSE' file for more details.
 | |
| //-----------------------------------------------------------------------------
 | |
| /// \file  r_local.h
 | |
| /// \brief Refresh (R_*) module, global header. All the rendering/drawing stuff is here
 | |
| 
 | |
| #ifndef __R_LOCAL__
 | |
| #define __R_LOCAL__
 | |
| 
 | |
| // Screen size related parameters.
 | |
| #include "doomdef.h"
 | |
| 
 | |
| // Binary Angles, sine/cosine/atan lookups.
 | |
| #include "tables.h"
 | |
| 
 | |
| // this one holds the max vid sizes and standard aspect
 | |
| #include "screen.h"
 | |
| 
 | |
| #include "m_bbox.h"
 | |
| 
 | |
| #include "r_main.h"
 | |
| #include "r_bsp.h"
 | |
| #include "r_segs.h"
 | |
| #include "r_plane.h"
 | |
| #include "r_sky.h"
 | |
| #include "r_data.h"
 | |
| #include "r_textures.h"
 | |
| #include "r_things.h"
 | |
| #include "r_draw.h"
 | |
| 
 | |
| extern drawseg_t *firstseg;
 | |
| 
 | |
| void SplitScreen_OnChange(void);
 | |
| 
 | |
| #endif // __R_LOCAL__
 | 
