mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-03-22 18:26:14 -05:00
10 lines
194 B
C
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
|