Skip to content

Commit 5974573

Browse files
Update index.html
1 parent 506cbb9 commit 5974573

File tree

1 file changed

+27
-1
lines changed

1 file changed

+27
-1
lines changed

index.html

Lines changed: 27 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,27 @@
1-
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<title>Simple Game Engine</title>
6+
<link rel="stylesheet" href="style.css">
7+
</head>
8+
<body>
9+
<canvas id="gameCanvas"></canvas>
10+
<div id="controls">
11+
<select id="objectType">
12+
<option value="cube">Cube</option>
13+
<option value="sphere">Sphere</option>
14+
<option value="plane">Plane</option>
15+
</select>
16+
<button id="addObject">Add Object</button>
17+
<button id="exportGame">Export Game</button>
18+
</div>
19+
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r128/three.min.js"></script>
20+
<script src="js/engine.js"></script>
21+
<script src="js/renderer.js"></script>
22+
<script src="js/sceneManager.js"></script>
23+
<script src="js/inputHandler.js"></script>
24+
<script src="js/exportGame.js"></script>
25+
<script src="js/uiHandler.js"></script>
26+
</body>
27+
</html>

0 commit comments

Comments
 (0)