Added inisitive

This commit is contained in:
Bazsalanszky 2019-01-03 16:52:02 +01:00
parent 43763a3dbc
commit bb3b2916d1

View file

@ -3,6 +3,7 @@
class Entity{
private $name;
private $armour_class;
private $inisitive;
private $fullhp;
private $hp;
private $str;
@ -19,6 +20,12 @@ class Entity{
public function getName(){
return $this->name;
}
public function setInisitive(int $init){
$this->inisitive = $init;
}
public function getInisitive(){
return $this->init;
}
public function setAC(int $ac){
$this->armour_class = $ac;
}