blob: 3f7d452ced56e32727d43458cbf3ef594bfd9bef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#ifndef BEANSTALKSUBTASK_H
#define BEANSTALKSUBTASK_H
#include "global.h"
/*
tiles 0x4000 and above create an entry here
*/
#define MAX_0200B240 0x100
typedef struct {
u16 position; // (layer << 0xc) | position
u16 data;
} struct_0200B240;
extern struct_0200B240 gUnk_0200B240[MAX_0200B240];
typedef struct {
u16 collision;
u16 tileIndex;
} struct_080B44D0;
typedef struct {
u32 src;
void* dest;
u32 size;
} struct_08109194;
#endif // BEANSTALKSUBTASK_H
|