mirror of
https://github.com/zeldaret/tmc
synced 2026-05-24 07:11:07 -04:00
16 lines
235 B
C
16 lines
235 B
C
#ifndef CUTSCENE_H
|
|
#define CUTSCENE_H
|
|
|
|
#include "global.h"
|
|
|
|
typedef struct {
|
|
u32* cutsceneData;
|
|
u8 textIndex;
|
|
u8 filler[11];
|
|
u16 pauseTime;
|
|
u8 filler[2];
|
|
s32 targetX;
|
|
s32 targetY;
|
|
} CutsceneBehavior;
|
|
|
|
#endif |