mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2024-11-15 09:11:48 +00:00
33 lines
1,015 B
C
33 lines
1,015 B
C
// SONIC ROBO BLAST 2
|
|
//-----------------------------------------------------------------------------
|
|
// Copyright (C) 2004-2018 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 y_inter.h
|
|
/// \brief Tally screens, or "Intermissions" as they were formally called in Doom
|
|
|
|
extern boolean usebuffer;
|
|
|
|
void Y_IntermissionDrawer(void);
|
|
void Y_Ticker(void);
|
|
void Y_StartIntermission(void);
|
|
void Y_EndIntermission(void);
|
|
|
|
typedef enum
|
|
{
|
|
int_none,
|
|
int_coop, // Single Player/Cooperative
|
|
int_match, // Match
|
|
int_teammatch,// Team Match
|
|
// int_tag, // Tag
|
|
int_ctf, // CTF
|
|
int_spec, // Special Stage
|
|
int_nights, // NiGHTS into Dreams
|
|
int_nightsspec,// NiGHTS special stage
|
|
int_race, // Race
|
|
int_classicrace, // Competition
|
|
} intertype_t;
|
|
extern intertype_t intertype;
|