File size: 461 Bytes
aad8791
a833a31
9f757ed
a833a31
b6059e7
9f757ed
 
 
b6059e7
9f757ed
 
a833a31
 
 
 
9f757ed
 
 
a833a31
b6059e7
9f757ed
b6059e7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <title>Tower Defense Game</title>
    <style>
        body {
            margin: 0;
            padding: 0;
            overflow: hidden;
        }
        canvas {
            width: 100%;
            height: 100%;
        }
    </style>
</head>
<body>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r128/three.min.js"></script>
    <script src="game.js"></script>
</body>
</html>