aboutsummaryrefslogtreecommitdiffstats
path: root/inc/Monster.inc
blob: fbb0fe9d6387b7b6b2ad40f39a5b5c65ee1aeaef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php

class Monster {
	public $name = "";
	public $icon = "";
	public $desc = "";
	public $hp = 1;
	public $level = 1;

	function __construct($name, $level, $hp, $icon) {
		$this->name = $name;
		$this->level = $level;
		$this->hp = $hp;
		$this->icon = $icon;
		
	}
}

?>