mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-03-21 17:55:13 -05:00
Some checks are pending
build / build (push) Waiting to run
This replaces instances of NARC IDs with type `int` or `u32` to use `enum NarcID` instead, and replaces most instances of a NARC ID to be named `narcID` instead of `narc`, `narcIndex` or `narcIdx`. The name wasn't replaced where the original one was more descriptive.
12 lines
316 B
C
12 lines
316 B
C
#ifndef POKEPLATINUM_POKEDEX_DATA_INDEX_H
|
|
#define POKEPLATINUM_POKEDEX_DATA_INDEX_H
|
|
|
|
#include "constants/narc.h"
|
|
|
|
void Pokedex_SetupGiratina(u32 param0);
|
|
enum NarcID Pokedex_Data_NARC_Index(void);
|
|
u32 Weight_Message_Bank_Index(void);
|
|
u32 Height_Message_Bank_Index(void);
|
|
|
|
#endif // POKEPLATINUM_POKEDEX_DATA_INDEX_H
|