mirror of
https://github.com/risingPhil/PokeMe64.git
synced 2026-03-21 18:04:15 -05:00
- Add "Pikachu Bed" and "Tentacool Doll" decoration unlock options for gen 2 - bugfix for unsafe behaviour - attempt to make the RESET button work for cartridge switching. It failed though. (not reliable). Therefore I just added a warning message instead. - Work on new ScrollWidget for Credits/About screen (Work In Progress)
30 lines
981 B
C++
Executable File
30 lines
981 B
C++
Executable File
#ifndef _MENUFUNCTIONS_H
|
|
#define _MENUFUNCTIONS_H
|
|
|
|
#include "Moves.h"
|
|
|
|
#include <cstdint>
|
|
|
|
// these are used to pass as a pointer to the gen1PrepareToTeachPikachu
|
|
extern const Move MOVE_SURF;
|
|
extern const Move MOVE_FLY;
|
|
|
|
extern const uint16_t GEN2_EVENTFLAG_DECORATION_PIKACHU_BED;
|
|
extern const uint16_t GEN2_EVENTFLAG_DECORATION_TENTACOOL_DOLL;
|
|
|
|
void activateFrameLog(void* context, const void* param);
|
|
void advanceDialog(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);
|
|
void gen2SetEventFlag(void* context, const void* param);
|
|
|
|
|
|
#endif |