mirror of
https://github.com/zeldaret/tmc
synced 2026-05-25 15:25:26 -04:00
19 lines
278 B
C
19 lines
278 B
C
#ifndef MISCMANAGER_H
|
|
#define MISCMANAGER_H
|
|
|
|
#include "manager.h"
|
|
|
|
typedef struct {
|
|
Manager base;
|
|
u8 unk_20[0x18];
|
|
s16 x;
|
|
s16 y;
|
|
u16 flag1;
|
|
u16 flag2;
|
|
} MiscManager;
|
|
|
|
extern void sub_08059278(void);
|
|
extern void SetDirtTile(u32);
|
|
|
|
#endif // MISCMANAGER_H
|