This website works better with JavaScript.
首頁
探索
說明
登入
myitinos
/
HackTheGame-v002
複製自
myitinos/HackTheGame-v001
關註
1
收藏
0
複製
1
程式碼
問題管理
0
合併請求
0
版本發佈
0
Wiki
Activity
瀏覽代碼
addedd hp and maxHP getter
pull/1/head
myitinos
6 年之前
父節點
ef6b38d299
當前提交
4a851a8000
共有
1 個文件被更改
,包括
15 次插入
和
0 次删除
分割檢視
Diff Options
Show Stats
Download Patch File
Download Diff File
+15
-0
class/character.hpp
+ 15
- 0
class/character.hpp
查看文件
@ -42,6 +42,21 @@ class Character
return
hp
>
0
;
}
bool
restoreHP
(
)
{
this
-
>
hp
=
this
-
>
maxHp
;
}
int
checkHP
(
)
{
return
hp
;
}
int
getMaxHP
(
)
{
return
maxHp
;
}
int
defend
(
int
dmg
)
{
dmg
-
=
def
;
Write
Preview
Loading…
取消
儲存