mirror of
https://github.com/pret/pokeheartgold.git
synced 2026-05-10 21:08:16 -05:00
13 lines
329 B
C
13 lines
329 B
C
#ifndef OVERLAY_MODULE_H
|
|
#define OVERLAY_MODULE_H
|
|
|
|
#include <stdbool.h>
|
|
#include "global.h"
|
|
|
|
bool ReadOverlayModules(Component *component);
|
|
bool WriteOverlayModules(Component *component);
|
|
bool AddSuffixOverlayModules(Component *component, char *suffix);
|
|
void FreeOverlayModules(Component *component);
|
|
|
|
#endif // OVERLAY_MODULE_H
|