mirror of
https://github.com/rh-hideout/pokeemerald-expansion.git
synced 2026-05-20 05:28:08 -05:00
16 lines
268 B
C
16 lines
268 B
C
#ifndef GUARD_QUICKSTART_H
|
|
#define GUARD_QUICKSTART_H
|
|
|
|
#include "config/quickstart.h"
|
|
|
|
#if RELEASE
|
|
#define QUICKSTART FALSE
|
|
#else
|
|
#define QUICKSTART ENABLE_QUICKSTART
|
|
#endif
|
|
|
|
void CreateQuickstartHud(void);
|
|
void Quickstart(void);
|
|
|
|
#endif // GUARD_QUICKSTART_H
|