mirror of
https://github.com/zeldaret/tmc
synced 2026-05-27 16:14:05 -04:00
aced0bef69
Now the 16x16 tiles are just called tiles and the 8x8 tiles are called subTiles.
14 lines
226 B
C
14 lines
226 B
C
#ifndef FLAMEMANAGER_H
|
|
#define FLAMEMANAGER_H
|
|
|
|
#include "manager.h"
|
|
|
|
typedef struct {
|
|
struct Manager base;
|
|
u8 field_0x20[0x18];
|
|
s16 tilePos; // x
|
|
s16 field_0x3a; // y
|
|
} FlameManager;
|
|
|
|
#endif // FLAMEMANAGER_H
|