mirror of
https://github.com/zeldaret/tmc
synced 2026-05-25 23:35:29 -04:00
aced0bef69
Now the 16x16 tiles are just called tiles and the 8x8 tiles are called subTiles.
19 lines
304 B
C
19 lines
304 B
C
#ifndef BOMBABLEWALLMANAGER_H
|
|
#define BOMBABLEWALLMANAGER_H
|
|
|
|
#include "manager.h"
|
|
|
|
typedef struct {
|
|
Manager base;
|
|
u8 field_0x20[0x15];
|
|
u8 layer;
|
|
u8 field_0x36;
|
|
u8 field_0x37;
|
|
s16 x;
|
|
u16 y;
|
|
u16 tilePos;
|
|
u16 flag;
|
|
} BombableWallManager;
|
|
|
|
#endif // BOMBABLEWALLMANAGER_H
|