ソースを参照

renamed function to check alive or not and added name getter

master
myitinos 5年前
コミット
88aabb485a
1個のファイルの変更7行の追加2行の削除
  1. +7
    -2
      class/character.hpp

+ 7
- 2
class/character.hpp ファイルの表示

@ -32,12 +32,12 @@ class Character
this->def = def;
}
bool checkDied()
bool isDead()
{
return hp <= 0;
}
bool checkAlive()
bool isAlive()
{
return hp > 0;
}
@ -62,6 +62,11 @@ class Character
return def;
}
char *getName()
{
return name;
}
int getAtt()
{
return att;

読み込み中…
キャンセル
保存