RingRacers/src/r_local.h
TehRealSalt b12872af02 what is this bullshit?!
r_local.h just got completely overwritten by a copy of r_draw.h.....
2018-03-12 01:21:35 -04:00

41 lines
No EOL
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-2016 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_things.h"
#include "r_draw.h"
extern drawseg_t *firstseg;
void SplitScreen_OnChange(void);
#endif // __R_LOCAL__