locations-bugs #17

Merged
lopar merged 12 commits from locations-bugs into master 2020-10-28 20:25:45 +00:00
Showing only changes of commit 687e65f251 - Show all commits

View File

@ -32,4 +32,19 @@ HTML_HEADER;
}
return $head;
}
/**
* @param string $buildingName название здания
* @param string $streetName служебное название улицы на которой стоит здание для кнопки возврата.
* @return string
*/
public static function buildingTop(string $buildingName, string $streetName): void
{
echo <<<HTML
<div style="float: right">
<button onclick="top.frames['gameframe'].location = 'city.php?$streetName'">Выйти из здания</button>
</div>
<h1>$buildingName</h1>
HTML;
}
}