blob: 7a60c768ffec17d8949b124a3447f3e8a51008ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef DESTRUCTIBLETILEOBSERVEMANAGER_H
#define DESTRUCTIBLETILEOBSERVEMANAGER_H
#include "manager.h"
typedef struct {
Manager base;
} DestructibleTileObserveManager;
typedef struct {
u8 field_0x0;
u8 tileLayer;
u16 flag;
u16 tilePos;
u16 tileType; // If the tile type at tilePos, tileLayer is tileType, set the local flag.
} DestructibleTileObserveManager_unk; // TODO result of GetCurrentRoomProperty(3)?
#endif // DESTRUCTIBLETILEOBSERVEMANAGER_H
|