2014-03-15 16:59:03 +00:00
|
|
|
// SONIC ROBO BLAST 2
|
|
|
|
//-----------------------------------------------------------------------------
|
2018-11-25 12:35:38 +00:00
|
|
|
// Copyright (C) 2004-2018 by Sonic Team Junior.
|
2014-03-15 16:59:03 +00: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
|
2016-07-06 04:09:17 +00:00
|
|
|
/// \brief Tally screens, or "Intermissions" as they were formally called in Doom
|
2014-03-15 16:59:03 +00:00
|
|
|
|
2014-03-21 18:42:55 +00:00
|
|
|
extern boolean usebuffer;
|
|
|
|
|
2014-03-15 16:59:03 +00:00
|
|
|
void Y_IntermissionDrawer(void);
|
|
|
|
void Y_Ticker(void);
|
|
|
|
void Y_StartIntermission(void);
|
|
|
|
void Y_EndIntermission(void);
|
|
|
|
|
2018-01-27 06:17:08 +00:00
|
|
|
void Y_VoteDrawer(void);
|
2018-01-28 01:59:29 +00:00
|
|
|
void Y_VoteTicker(void);
|
|
|
|
void Y_StartVote(void);
|
2018-01-27 06:17:08 +00:00
|
|
|
void Y_EndVote(void);
|
2018-02-23 01:04:52 +00:00
|
|
|
void Y_SetupVoteFinish(SINT8 pick, SINT8 level);
|
2018-01-27 06:17:08 +00:00
|
|
|
|
2014-03-15 16:59:03 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
int_none,
|
2017-02-07 22:19:04 +00:00
|
|
|
int_timeattack, // Time Attack
|
|
|
|
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
|
2014-03-15 16:59:03 +00:00
|
|
|
int_classicrace, // Competition
|
|
|
|
} intertype_t;
|
|
|
|
extern intertype_t intertype;
|