pokeplatinum/include/struct_defs/fraction.h
2024-07-06 14:40:34 -07:00

10 lines
194 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