Poke_Transporter_GB/include/box_menu.h
The Gears of Progress e0f78a3195 Finalizing beta v2
2024-05-29 13:11:44 -05:00

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