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

@ -32,7 +32,7 @@ fraction &fraction::simplify() {
return *this;
}
float fraction::real() {
float fraction::real() const {
return (float)numerator / denominator;
}