summaryrefslogtreecommitdiff
path: root/include/manager/tilePuzzleManager.h
blob: bbf2e2cfa8d25143681842d772d20bd0cfe6bdf4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef TILEPUZZLEMANAGER_H
#define TILEPUZZLEMANAGER_H

#include "manager.h"

typedef struct TilePuzzleManager {
    Manager base;
    u8 unk_20[8]; // unused
    u16 own_tile;
    u8 unk_2a[0x2]; // unused
    u16 player_previous_tile;
    u16 player_current_tile;
    u8 unk_30[0x6]; // unused
    u8 width;
    u8 height;
    s16 x;
    s16 y;
    u16 flag_succeeded;
    u16 flag_reset;
} TilePuzzleManager;

#endif // TILEPUZZLEMANAGER_H