Fix get_max_hp mehod in property example

This commit is contained in:
C3pa 2023-02-18 18:27:03 +01:00 committed by The Phantom Derpstorm
parent eab1430ccd
commit 97806f2a7c

View File

@ -15,7 +15,7 @@ public:
}
int get_max_hp() const {
return hp;
return maxhp;
}
void set_max_hp(int value) {