This website works better with JavaScript.
Home
Explore
Help
Sign In
myitinos
/
HackTheGame-v002
forked from
myitinos/HackTheGame-v001
Watch
1
Star
0
Fork
1
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
added checkAlive() function
pull/1/head
myitinos
5 years ago
parent
b399e580be
commit
ae11489f89
1 changed files
with
5 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+5
-0
class/character.hpp
+ 5
- 0
class/character.hpp
View File
@ -34,6 +34,11 @@ class Character
return
hp
<
=
0
;
}
bool
checkAlive
(
)
{
return
hp
>
0
;
}
int
defend
(
int
dmg
)
{
dmg
-
=
def
;
Write
Preview
Loading…
Cancel
Save