mirror of
https://github.com/pret/pokeheartgold.git
synced 2026-05-09 12:13:51 -05:00
11 lines
243 B
C
11 lines
243 B
C
#ifndef COMPONENT_H
|
|
#define COMPONENT_H
|
|
|
|
#include <stdbool.h>
|
|
#include "global.h"
|
|
|
|
bool ConvertComponent(Options *options, char *staticModule, char *overlayDefs, char *overlayTable);
|
|
void ConvertFinal(Options *options);
|
|
|
|
#endif // COMPONENT_H
|