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

require_once("mine.inc");
require_once("shop.inc");

function sendCraftMine() {
	$data = array("gold" => sendMine(),
		"shop" => sendShop(),
		"inventory" => Inventory::sendContent(),
		"miners" => sendMiners()
	);
	echo json_encode($data);
}

?>