changes to characters and potions, work in progress

This commit is contained in:
2024-07-13 00:59:52 -04:00
parent afc2b9fa12
commit f2d2f6f72d
22 changed files with 215 additions and 76 deletions

View File

@ -10,7 +10,7 @@ struct fraction final {
bool operator==(const fraction &frac);
bool operator!=(const fraction &frac);
fraction &simplify();
float real();
float real() const;
private:
int gcd(int a, int b);
};