-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (38 loc) · 2.19 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Conway's Game Of Life</title>
<link rel="stylesheet" type="text/css" href="assets/stylesheets/main.css">
<link rel="shortcut icon" type="image/x-icon" href="assets/images/favicon.png" />
<meta name="description" content="The Game of Life, also known simply as Life, is a cellular automaton devised by the British mathematician John Horton Conway in 1970."></meta>
<script type="text/javascript" src="assets/javascripts/lib/phaser.min.js"></script>
<script type="text/javascript" src="assets/javascripts/lib/underscore-min.js"></script>
<script type="text/javascript" src="assets/javascripts/components/cell.js"></script>
<script type="text/javascript" src="assets/javascripts/states/load.js"></script>
<script type="text/javascript" src="assets/javascripts/states/boot.js"></script>
<script type="text/javascript" src="assets/javascripts/states/menu.js"></script>
<script type="text/javascript" src="assets/javascripts/states/play.js"></script>
<script type="text/javascript" src="assets/javascripts/states/gameover.js"></script>
<script type="text/javascript" src="assets/javascripts/game.js"></script>
</head>
<body>
<div class="wrapper">
<div class="info">
CONWAY'S GAME OF LIFE
</div>
<div class="game-wrapper" id="game-container">
</div>
<div class="info">
<p>Made with Phaser by <a href="http://twitter.com/enoliglesias" target="_blank">@enoliglesias</a></p>
<p><a href="http://undefinedmethod.com" target="_blank">Undefinedmethod.com</a></p>
<p>
The Game of Life, also known simply as Life, is a cellular automaton devised by the British mathematician John Horton Conway in 1970.
</p>
<p>
The "game" is a zero-player game, meaning that its evolution is determined by its initial state, requiring no further input. One interacts with the Game of Life by creating an initial configuration and observing how it evolves, or, for advanced "players", by creating patterns with particular properties.
</p>
</div>
</div>
</body>
</html>