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