-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathboarding.html
More file actions
41 lines (36 loc) · 994 Bytes
/
boarding.html
File metadata and controls
41 lines (36 loc) · 994 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>PyLove2D Docs</title>
<link rel="stylesheet" href="assets/style.css">
</head>
<body>
<header>
<h1>PyLove2D Documentation</h1>
</header>
<nav>
<a href="index.html">Home</a>
<a href="getting_started.html">Getting Started</a>
<a href="api.html">API Reference</a>
<a href="examples.html">Examples</a>
</nav>
<main>
<h2>Welcome to PyLove2D</h2>
<p>PyLove2D is a Python game framework inspired by LÖVE2D. It allows you to create 2D games easily with Python and Pygame.</p>
<h2>Features</h2>
<ul>
<li>Graphics: draw shapes, images, and text</li>
<li>Audio: play sound effects and music</li>
<li>Input: keyboard, mouse, and joystick</li>
<li>Timer: schedule delayed or repeated actions</li>
<li>Filesystem helpers</li>
<li>Math utilities for vectors and transformations</li>
</ul>
<p>Get started by following the <a href="getting_started.html">tutorial</a>.</p>
</main>
<footer>
© 2025 PyLove2D
</footer>
</body>
</html>