diff options
author | Matthew Kosarek <mattkae@protonmail.com> | 2021-03-22 20:54:51 -0400 |
---|---|---|
committer | Matthew Kosarek <mattkae@protonmail.com> | 2021-03-22 20:54:51 -0400 |
commit | c36d05d5aed2f8f7c6342b174692146e2d11c386 (patch) | |
tree | 8e54047d7b6db7e3d21ccfad6b8c4965d42c09fa /frontend/roadmap.html | |
parent | c29a911cd1a3f23f66478f205cace14487aadc56 (diff) |
Refactored frontend, beginnings of general cpp layer, and beginning roadmap
Diffstat (limited to 'frontend/roadmap.html')
-rw-r--r-- | frontend/roadmap.html | 77 |
1 files changed, 77 insertions, 0 deletions
diff --git a/frontend/roadmap.html b/frontend/roadmap.html new file mode 100644 index 0000000..8c58bbe --- /dev/null +++ b/frontend/roadmap.html @@ -0,0 +1,77 @@ +<!DOCTYPE html> +<html lang="en"> + <head> + <meta charset="utf-8"> + <script src="scripts/jquery-3.5.1.min.js"></script> + <script src="index.js"></script> + <link rel="stylesheet" href="index.css"> + <title>Roadmap</title> + <style> + section ul { + list-style: none; + padding-left: 0; + } + section li { + position: relative; + padding-left: 1.5em; /* space to preserve indentation on wrap */ + } + section li:before { + content: ''; + position: absolute; + left: 0; + width: 1rem; + height: 1rem; + } + section ul { + list-style: none; + } + + section ul li:before { + content: '-'; + } + + section ul li.done:before { + content: '✓'; + } + + .done { + color: lightgreen; + } + </style> + </head> + <body> + <header> + <h1>Physics for Games</h1> + </header> + <main> + <nav></nav> + <section> + <h1>Ground Work</h1> + <ul> + <li class="done">Orthographic rendering basics</li> + <li>WASM Framework with simulation loop</li> + </ul> + <hr/> + <h1>2D Collisions with Descriptions</h1> + <ul> + <li>Pill-Line Collision</li> + <li>Pill-Pill Collisions</li> + <li>Pill-Circle Collisions</li> + <li>Pill-Square Collisions</li> + <li>Square-Line Collisions (Redo)</li> + <li>Circle-Line Collisions (Redo)</li> + <li>Square-Circle Collision</li> + </ul> + <hr /> + <h1>Brief Wasm Series</h1> + <ul> + <li>Getting started with WASM docs</li> + <li>Wasm examples</li> + </ul> + <p style="color: pink; font-size: 18px;"> + Everything above has a due date of <b>April 30th, 2021</b>. None of it is that hard, so this should be a very doable timeline. + </p> + </section> + </main> + </body> +</html> |