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
renamed function to check alive or not and added name getter
master
myitinos
hace 6 años
padre
bbae242f9a
commit
88aabb485a
Se han
modificado 1 ficheros
con
7 adiciones
y
2 borrados
Dividir vista
Opciones de diferencias
Mostrar estadísticas
Descargar archivo de parche
Descargar archivo de diferencias
+7
-2
class/character.hpp
+ 7
- 2
class/character.hpp
Ver fichero
@ -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
;
Escribir
Vista previa
Cargando…
Cancelar
Guardar