pokeplatinum/include/struct_defs/fraction.h

9 lines
193 B
C

#ifndef POKEPLATINUM_STRUCT_FRACTION_H
#define POKEPLATINUM_STRUCT_FRACTION_H
typedef struct Fraction {
u8 numerator;
u8 denominator;
} Fraction;
#endif POKEPLATINUM_STRUCT_FRACTION_H