basic evolution finished

This commit is contained in:
MaxRobinsonTheGreat
2020-07-04 14:01:30 -06:00
parent 8d208ca9cc
commit 9b24e4cc1c
16 changed files with 2878 additions and 7 deletions

200
dist/bundle.js vendored Normal file

File diff suppressed because one or more lines are too long

14
dist/css/style.css vendored Normal file
View File

@@ -0,0 +1,14 @@
body{
background: #121D29;
margin: 0;
padding: 0;
}
canvas {
display: block;
}
* {
margin: 0;
padding: 0;
}

12
dist/html/index.html vendored Normal file
View File

@@ -0,0 +1,12 @@
<!DOCTYPE html>
<html>
<head>
<meta charste="UTF-8">
<title>Evolution Simulator</title>
<link rel="stylesheet" href="../css/style.css">
</head>
<body>
<canvas id='canvas'></canvas>
<script src="../bundle.js"></script>
</body>
</html>