19 lines
572 B
HTML
19 lines
572 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<script src="//code.jquery.com/jquery-1.11.0.min.js"></script>
|
|
<!-- <script src="https://labs.phaser.io/build/phaser-arcade-physics.min.js"></script> -->
|
|
<script src="https://cdn.jsdelivr.net/npm/phaser@3.6.0/dist/phaser.min.js"></script>
|
|
</head>
|
|
<body>
|
|
<div id="PhaserSample" style="text-align:center;" />
|
|
|
|
<script>
|
|
$(document).ready(function(){
|
|
$.getScript( "phaser_sample_main.js", function() {});
|
|
});
|
|
</script>
|
|
<!-- <script src="./phaser_sample.js"></script> -->
|
|
|
|
</body>
|
|
</html> |