mirror of
https://github.com/GearsProgress/Poke_Transporter_GB.git
synced 2026-04-20 07:57:32 -05:00
28 lines
421 B
C++
28 lines
421 B
C++
#ifndef BOX_MENU_H
|
|
#define BOX_MENU_H
|
|
|
|
#include <tonc.h>
|
|
#include <vector>
|
|
#include "string.h"
|
|
#include "button_handler.h"
|
|
#include "pokemon.h"
|
|
#include "string_view"
|
|
#include "pokemon_party.h"
|
|
#include "button_handler.h"
|
|
|
|
#define CANCEL_BUTTON 1
|
|
#define CONFIRM_BUTTON 2
|
|
|
|
class Box_Menu
|
|
{
|
|
public:
|
|
Box_Menu();
|
|
int box_main(Pokemon_Party party_data);
|
|
private:
|
|
int curr_button;
|
|
int x;
|
|
int y;
|
|
|
|
};
|
|
|
|
#endif |