mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2024-11-15 09:11:48 +00:00
41 lines
1.1 KiB
C
41 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-2019 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__
|