-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (45 loc) · 2.14 KB
/
index.html
File metadata and controls
45 lines (45 loc) · 2.14 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Schedule I Modding Documentation</title>
<link rel="icon" type="image/x-icon" href="/Schedule-I-Modding-Doc/Images/Modding Doc.png">
<link href="https://cdnjs.cloudflare.com/ajax/libs/prism/1.29.0/themes/prism-tomorrow.min.css" rel="stylesheet" />
<link rel="stylesheet" href="/Schedule-I-Modding-Doc/stylesheat.css">
<script src="/Schedule-I-Modding-Doc/main.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.29.0/prism.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.29.0/components/prism-csharp.min.js"></script>
</head>
<body>
<script>onload=onload()</script>
<nav class="sidebar" style="margin-right: 20px;">
<a href="/Schedule-I-Modding-Doc/"><img src="/Schedule-I-Modding-Doc/Images/Modding Doc.png" alt="Main page" style="width:100%;height:auto;background-color: transparent;"></a>
<button onclick=darkmode() id="drkmd" class="theme-toggle">🌙</button>
<h2>Simple Functions</h2>
<ul>
<li><a href="/Schedule-I-Modding-Doc/pages/InteractableObject/">Interactable Object</a></li>
<!-- Add more links as needed -->
</ul>
<h2>Complex Functions</h2>
<ul>
<!-- Add more links as needed -->
</ul>
<h2>Plugin Documentation</h2>
<ul>
<li><a href="/Schedule-I-Modding-Doc/pages/MeshLoader/">Mesh Loader</a></li>
<!-- Add more links as needed -->
</ul>
<h2>Not Modding Related</h2>
<ul>
<li><a href="/Schedule-I-Modding-Doc/pages/About/">about</a></li>
<li><a href="/Schedule-I-Modding-Doc/pages/Contact/">Contact us</a></li>
<!-- Add more links as needed -->
</ul>
</nav>
<main class="content">
<h1>Schedule I Modding Documentation</h1>
<p>Welcome to the modding documentation for Schedule I. Here you will find information on how to use various functions & components to modify the game.</p>
</main>
</body>
</html>