RingRacers/src/k_dialogue.h
Sally Coolatta c9291b0f61 Mobj thinker freeze condition rework
- There's a freeze cheat bool to freeze everything except for players.
- There's a level freeze bool to freeze literally everything.
- There's a frozen bool on mobj_t to explicitly control freeze status on an object.
2023-09-18 03:24:58 -04:00

34 lines
834 B
C

// DR. ROBOTNIK'S RING RACERS
//-----------------------------------------------------------------------------
// Copyright (C) by Sonic Team Junior
// Copyright (C) by Kart Krew
// Copyright (C) by Sally "TehRealSalt" Cochenour
//
// 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 k_dialogue.h
/// \brief Basic text prompts
#ifndef __K_DIALOGUE__
#define __K_DIALOGUE__
#include "doomtype.h"
#include "doomdef.h"
#ifdef __cplusplus
extern "C" {
#endif
void K_UnsetDialogue(void);
void K_DrawDialogue(void);
void K_TickDialogue(void);
boolean K_DialogueFreeze(void);
#ifdef __cplusplus
} // extern "C"
#endif
#endif //__K_DIALOGUE__