mirror of
https://github.com/zeldaret/tmc
synced 2026-05-24 15:21:09 -04:00
aced0bef69
Now the 16x16 tiles are just called tiles and the 8x8 tiles are called subTiles.
19 lines
338 B
C
19 lines
338 B
C
#ifndef RAILINTERSECTIONMANAGER_H
|
|
#define RAILINTERSECTIONMANAGER_H
|
|
|
|
#include "manager.h"
|
|
|
|
typedef struct {
|
|
Manager base;
|
|
u8 field_0x20[0x16];
|
|
u8 layer;
|
|
u8 field_0x37;
|
|
s16 tilePos;
|
|
u16 field_0x3a;
|
|
u8 field_0x3c;
|
|
u8 field_0x3d;
|
|
u16 flags;
|
|
} RailIntersectionManager;
|
|
|
|
#endif // RAILINTERSECTIONMANAGER_H
|