-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
109 lines (106 loc) · 3.17 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<!DOCTYPE html>
<html lang="en" data-theme="dark">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Game Logic</title>
<link rel="shortcut icon" href="favicon.ico" />
<link rel="stylesheet" href="pico.min.css" />
</head>
<body class="container">
<article>
<!-- Nav -->
<header>
<nav class="container-fluid">
<ul>
<li>
<a href="./" class="contrast" onclick="event.preventDefault()"
><strong>🎮 Game Logic</strong></a
>
</li>
</ul>
<ul>
<li>
<a
href="https://github.com/practical-works/game-logic"
target="_blank"
class="contrast"
>📜 Source on Github</a
>
</li>
</ul>
</nav>
</header>
<!-- ./ Nav -->
<!-- Main -->
<main>
<hgroup class="container">
<h1>🎇 Examples of game development related logic</h1>
<h2 style="text-align: justify">
This is a set of examples implementing some useful simple common
game development related logic. It features some techniques for game
core logic structuring, layout manipulation, control handling,
collision detection, and data calculation.
</h2>
</hgroup>
<div class="grid">
<!-- Example-0 -->
<article>
<hgroup>
<h1>⬛ Example 0</h1>
<h2>
Base, layout, control, collision, and data. <br />
<a
href="https://github.com/practical-works/game-logic#example-0"
target="_blank"
>ℹ️ See more infos...</a
>
</h2>
</hgroup>
<a href="./game0/" role="button" target="_blank">▶️ Run Game 0</a>
</article>
<!-- ./Example-0 -->
<!-- Example-1 -->
<article>
<hgroup>
<h1>🏃 Example 1</h1>
<h2>
Platformer movement. <br />
<a
href="https://github.com/practical-works/game-logic#example-1"
target="_blank"
>ℹ️ See more infos...</a
>
</h2>
</hgroup>
<a href="./game1/" role="button" target="_blank">▶️ Run Game 1</a>
</article>
<!-- ./Example-1 -->
</div>
</main>
<!-- ./ Main -->
<!-- Footer -->
<footer style="text-align: center">
<small>❤️</small><br />
<small>
<a
href="https://github.com/Ambratolm"
target="_blank"
class="secondary"
>Ambratolm</a
>
<br />
<a
href="https://github.com/practical-works"
target="_blank"
class="secondary"
>Practical Works</a
>
<br />
2022</small
>
</footer>
<!-- ./ Footer -->
</article>
</body>
</html>