SRB2/src/y_inter.h

40 lines
1.1 KiB
C
Raw Normal View History

2014-03-15 09:59:03 -07:00
// SONIC ROBO BLAST 2
//-----------------------------------------------------------------------------
2021-05-07 08:45:56 -07:00
// Copyright (C) 2004-2021 by Sonic Team Junior.
2014-03-15 09:59:03 -07:00
//
// 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
2014-03-15 09:59:03 -07:00
2014-03-21 11:42:55 -07:00
extern boolean usebuffer;
2014-03-15 09:59:03 -07:00
void Y_IntermissionDrawer(void);
void Y_Ticker(void);
2021-04-05 19:50:22 -07:00
void Y_LoadIntermissionData(void);
2014-03-15 09:59:03 -07:00
void Y_StartIntermission(void);
void Y_EndIntermission(void);
void Y_ConsiderScreenBuffer(void);
void Y_CleanupScreenBuffer(void);
2014-03-15 09:59:03 -07:00
void Y_DetermineIntermissionType(void);
2014-03-15 09:59:03 -07:00
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_race, // Race
int_comp, // Competition
2014-03-15 09:59:03 -07:00
} intertype_t;
extern intertype_t intertype;
extern intertype_t intermissiontypes[NUMGAMETYPES];