mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
35 lines
895 B
C
35 lines
895 B
C
// DR. ROBOTNIK'S RING RACERS
|
|
//-----------------------------------------------------------------------------
|
|
// Copyright (C) 2024 by Sally "TehRealSalt" Cochenour
|
|
// Copyright (C) 2024 by Kart Krew
|
|
// Copyright (C) 2020 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 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);
|
|
INT32 K_GetDialogueSlide(fixed_t multiplier);
|
|
|
|
#ifdef __cplusplus
|
|
} // extern "C"
|
|
#endif
|
|
|
|
#endif //__K_DIALOGUE__
|