Poke_Transporter_GB/include/pokedex.h
The Gears of Progress b7f056ce79 Updating Dex Graphics
2024-08-08 16:07:43 -04:00

18 lines
277 B
C

#ifndef POKEDEX_H
#define POKEDEX_H
#include <tonc.h>
#include "dex_handler.h"
#define DEX_MAX 7
#define DEX_SHIFT_MAX (251 - DEX_MAX)
#define SPEED_DELAY 30
#define MAX_NAME_SIZE 10
void pokedex_init();
int pokedex_loop();
void pokedex_show();
void pokedex_hide();
#endif