mirror of
https://github.com/risingPhil/PokeMe64.git
synced 2026-03-22 02:14:20 -05:00
This implements functionality to teach Pikachu Surf and/or Fly and extends existing widgets to help provide this functionality. When a gen1 game is inserted, the user gets the choice to teach Pikachu these moves. This commit also restructures some of the Data and Style structs.
23 lines
776 B
C
Executable File
23 lines
776 B
C
Executable File
#ifndef _MENUFUNCTIONS_H
|
|
#define _MENUFUNCTIONS_H
|
|
|
|
#include "Moves.h"
|
|
|
|
// these are used to pass as a pointer to the gen1PrepareToTeachPikachu
|
|
extern const Move MOVE_SURF;
|
|
extern const Move MOVE_FLY;
|
|
|
|
void printMessage(void* context, const void* param);
|
|
void activateFrameLog(void* context, const void* param);
|
|
|
|
void goToTestScene(void* context, const void* param);
|
|
|
|
void goToGen1DistributionPokemonMenu(void* context, const void* param);
|
|
void goToGen2DistributionPokemonMenu(void* context, const void* param);
|
|
void goToGen2PCNYDistributionPokemonMenu(void* context, const void* param);
|
|
|
|
void gen1PrepareToTeachPikachu(void* context, const void* param);
|
|
void gen1TeachPikachu(void* context, const void* param);
|
|
void gen2ReceiveGSBall(void* context, const void* param);
|
|
|
|
#endif |