mirror of
https://github.com/photonstorm/phaser
synced 2024-11-16 09:48:18 +00:00
42 lines
No EOL
862 B
PHP
42 lines
No EOL
862 B
PHP
<?php
|
|
require 'src/Block.php';
|
|
require 'src/ClassDesc.php';
|
|
require 'src/Constant.php';
|
|
require 'src/Method.php';
|
|
require 'src/Parameter.php';
|
|
require 'src/Property.php';
|
|
require 'src/ReturnType.php';
|
|
require 'src/Processor.php';
|
|
require 'src/PhaserDocGen.php';
|
|
|
|
$gen = new PhaserDocGen();
|
|
?>
|
|
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>Phaser Documentation Generator</title>
|
|
<style type="text/css">
|
|
body {
|
|
font-family: Arial;
|
|
font-size: 14px;
|
|
background-color: #fff;
|
|
color: #000;
|
|
}
|
|
|
|
textarea {
|
|
width: 100%;
|
|
height: 1000px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<pre>
|
|
<?php
|
|
$gen->start();
|
|
?>
|
|
</pre>
|
|
|
|
</body>
|
|
</html>
|