blob: 4a49d4883586eafdc4745e4441159b7a734803da (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef LIGHTMANAGER_H
#define LIGHTMANAGER_H
#include "manager.h"
typedef struct {
Manager base;
s32 unk20;
} LightManager;
extern void UnDarkRoom(void);
#endif // LIGHTMANAGER_H
|