mirror of
https://github.com/pret/pokeemerald.git
synced 2026-03-29 05:35:33 -05:00
13 lines
162 B
C
13 lines
162 B
C
#ifndef GUARD_CONFIG_H
|
|
#define GUARD_CONFIG_H
|
|
|
|
#define ENGLISH
|
|
|
|
#ifdef ENGLISH
|
|
#define UNITS_IMPERIAL
|
|
#else
|
|
#define UNITS_METRIC
|
|
#endif
|
|
|
|
#endif // GUARD_CONFIG_H
|