19 lines
315 B
C
19 lines
315 B
C
/**
|
|
* Copyright (c) 2025 Dominic Masters
|
|
*
|
|
* This software is released under the MIT License.
|
|
* https://opensource.org/licenses/MIT
|
|
*/
|
|
|
|
#pragma once
|
|
#include "dusk.h"
|
|
|
|
/**
|
|
* Updates the RPG textbox state.
|
|
*/
|
|
void uiTextboxUpdate();
|
|
|
|
/**
|
|
* Draws the RPG textbox if it is visible.
|
|
*/
|
|
void uiTextboxRender(); |