mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-04-13 00:28:08 -05:00
9 lines
193 B
C
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 |