mirror of
https://github.com/photonstorm/phaser
synced 2024-11-23 21:24:09 +00:00
24 lines
No EOL
478 B
PHP
24 lines
No EOL
478 B
PHP
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>phaser</title>
|
|
<base href="../" />
|
|
<?php
|
|
require('../../build/config.php');
|
|
|
|
if (isset($_GET['f']))
|
|
{
|
|
$f = $_GET['f'];
|
|
?>
|
|
<script src="wip/<?php echo $f?>" type="text/javascript"></script>
|
|
<?php
|
|
}
|
|
?>
|
|
</head>
|
|
<body>
|
|
|
|
<div id="phaser-example"></div>
|
|
|
|
</body>
|
|
</html>
|