This website works better with JavaScript.
首頁
探索
說明
登入
myitinos
/
HackTheGame-v001
關註
1
收藏
0
複製
1
程式碼
問題管理
0
合併請求
0
版本發佈
0
Wiki
Activity
瀏覽代碼
renamed function to check alive or not and added name getter
master
myitinos
5 年之前
父節點
bbae242f9a
當前提交
88aabb485a
共有
1 個文件被更改
,包括
7 次插入
和
2 次删除
分割檢視
Diff Options
Show Stats
Download Patch File
Download Diff File
+7
-2
class/character.hpp
+ 7
- 2
class/character.hpp
查看文件
@ -32,12 +32,12 @@ class Character
this
-
>
def
=
def
;
}
bool
checkDie
d
(
)
bool
isDea
d
(
)
{
return
hp
<
=
0
;
}
bool
check
Alive
(
)
bool
is
Alive
(
)
{
return
hp
>
0
;
}
@ -62,6 +62,11 @@ class Character
return
def
;
}
char
*
getName
(
)
{
return
name
;
}
int
getAtt
(
)
{
return
att
;
Write
Preview
Loading…
取消
儲存