blob: 486814f277dca15a1d7272bace88070fcc07aae6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#ifndef SCROLL_H
#define SCROLL_H
#include "global.h"
#include "transitions.h"
typedef struct {
u16 unk_00;
u8 unk_02[0xE];
} struct_02034480;
extern struct_02034480 gUnk_02034480;
extern bool32 DoApplicableTransition(u32, u32, u32, u32);
extern void DoExitTransitionWithType(const Transition* screenTransition, u32 transitionType);
void UpdateIsDiggingCave(void);
void sub_08080930(u32);
extern void sub_080809D4(void);
extern void sub_08080CB4(struct Entity_*);
#endif // SCROLL_H
|