mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-08-18 23:32:39 -05:00
15 lines
376 B
C
15 lines
376 B
C
#ifndef POKEPLATINUM_CONSTANTS_MOVES_H
|
|
#define POKEPLATINUM_CONSTANTS_MOVES_H
|
|
|
|
#include "generated/move_attributes.h"
|
|
#include "generated/move_classes.h"
|
|
#include "generated/moves.h"
|
|
|
|
#define LEARNED_MOVES_MAX 4
|
|
#define MOVE_NOT_SELECTED 0xFF
|
|
|
|
#define GBA_NUM_VALID_MOVES MOVE_PSYCHO_BOOST
|
|
#define NUM_VALID_MOVES (MAX_MOVES - 1)
|
|
|
|
#endif // POKEPLATINUM_CONSTANTS_MOVES_H
|