Este sitio web funciona mejor con JavaScript.
Inicio
Explorar
Ayuda
Iniciar sesión
soekarmana
/
HackTheGame-v002
forkeado de
myitinos/HackTheGame-v002
Seguir
1
Destacar
0
Fork
0
Código
Incidencias
0
Pull Requests
0
Lanzamientos
0
Wiki
Actividad
Explorar el Código
addedd hp and maxHP getter
master
myitinos
hace 6 años
padre
ef6b38d299
commit
4a851a8000
Se han
modificado 1 ficheros
con
15 adiciones
y
0 borrados
Dividir vista
Opciones de diferencias
Mostrar estadísticas
Descargar archivo de parche
Descargar archivo de diferencias
+15
-0
class/character.hpp
+ 15
- 0
class/character.hpp
Ver fichero
@ -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
;
Escribir
Vista previa
Cargando…
Cancelar
Guardar