crocparty/game/game_dialogue.h

12 lines
259 B
C
Raw Permalink Normal View History

2024-02-29 04:48:22 +00:00
#ifndef GAME_DIALOGUE_H
#define GAME_DIALOGUE_H
#include <stdbool.h>
2024-02-29 22:31:44 +00:00
void game_dialogue_display(const char* text, bool modal);
bool game_dialogue_is_busy();
2024-02-29 04:48:22 +00:00
void game_dialogue_update(bool* allow_input);
void game_dialogue_draw();
#endif // GAME_DIALOGUE_H