14 lines
284 B
C
14 lines
284 B
C
/**
|
|
* Copyright (c) 2025 Dominic Masters
|
|
*
|
|
* This software is released under the MIT License.
|
|
* https://opensource.org/licenses/MIT
|
|
*/
|
|
|
|
#pragma once
|
|
#include "rpg/rpgtextbox.h"
|
|
|
|
typedef struct {
|
|
char_t text[RPG_TEXTBOX_MAX_CHARS];
|
|
rpgtextboxpos_t position;
|
|
} cutscenetext_t; |