mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-03-26 04:05:51 -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
|