blob: a30538c415f0ecb4b981e3bb19de59caf720f9f8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<?php
require_once("mine.inc");
require_once("shop.inc");
function sendCraftMine() {
$data = array("gold" => sendMine(),
"shop" => sendShop(),
"inventory" => Inventory::sendContent(),
);
echo json_encode($data);
}
?>
|