// DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- // Copyright (C) 2025 by Kart Krew. // Copyright (C) 2020 by Sonic Team Junior. // Copyright (C) 2000 by DooM Legacy Team. // Copyright (C) 1996 by id Software, Inc. // // 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" #ifdef __cplusplus extern "C" { #endif extern drawseg_t *firstseg; void SplitScreen_OnChange(void); #ifdef __cplusplus } // extern "C" #endif #endif // __R_LOCAL__