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

class Item {
	public $name = "";
	public $cost = 0;
	public $icon = "";
	public $desc = "";

	function __construct($name, $cost, $icon, $desc) {
		$this->name = $name;
		$this->cost = $cost;
		$this->icon = $icon;
		$this->desc = $desc;
	}
}

?>