mirror of
https://github.com/pret/pokeheartgold.git
synced 2026-05-11 21:34:25 -05:00
19 lines
390 B
C
19 lines
390 B
C
#ifndef POKEHEARTGOLD_GLOBAL_H
|
|
#define POKEHEARTGOLD_GLOBAL_H
|
|
|
|
#include <nitro.h>
|
|
#include <nitro/code16.h>
|
|
#include <nnsys.h>
|
|
|
|
#include <string.h>
|
|
#include <stddef.h>
|
|
|
|
#include "config.h" // MUST COME BEFORE ANY OTHER GAMEFREAK HEADERS
|
|
#include "constants/global.h"
|
|
#include "pm_version.h"
|
|
#include "assert.h"
|
|
|
|
#define NELEMS(a) (sizeof(a) / sizeof(*(a)))
|
|
|
|
#endif //POKEHEARTGOLD_GLOBAL_H
|