Poke_Transporter_GB/include/dex_handler.h
Remnants of Forgotten Disney de40daa51e Updating buttons and dialogue
2024-03-29 11:55:54 -05:00

24 lines
341 B
C++

#ifndef DEX_HANDLER_H
#define DEX_HANDLER_H
#include <tonc.h>
class Dex
{
public:
Dex();
Dex(OBJ_ATTR *L, OBJ_ATTR *M, OBJ_ATTR *R);
void set_location(int x, int y);
void hide();
void show();
private:
int x;
int y;
bool highlighted;
OBJ_ATTR *dex_L;
OBJ_ATTR *dex_M;
OBJ_ATTR *dex_R;
};
#endif