mirror of
https://github.com/zeldaret/tmc
synced 2026-05-24 07:11:07 -04:00
19 lines
270 B
C
19 lines
270 B
C
#ifndef TEXTBOX_H
|
|
#define TEXTBOX_H
|
|
|
|
#include "global.h"
|
|
|
|
typedef struct {
|
|
u8 doTextBox;
|
|
u8 unk;
|
|
u8 textSpeed;
|
|
u8 unk3; //HI?
|
|
u8 textWindowWidth;
|
|
u8 textWindowHeight;
|
|
u8 textWindowPosX;
|
|
u8 textWindowPosY;
|
|
u16 textIndex;
|
|
u16 unk2; //HI?
|
|
} TextBox;
|
|
|
|
#endif |