mirror of
https://github.com/pret/pmd-sky.git
synced 2026-04-05 00:26:05 -05:00
11 lines
216 B
C
11 lines
216 B
C
#ifndef PMDSKY_MOVES_H
|
|
#define PMDSKY_MOVES_H
|
|
|
|
#include "move.h"
|
|
|
|
// Gets the maximum PP for a given move.
|
|
// return: max PP for the given move, capped at 99
|
|
u32 GetMaxPp(struct move *move);
|
|
|
|
#endif //PMDSKY_MOVES_H
|