-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcot_tutorial.html
More file actions
51 lines (45 loc) · 2.23 KB
/
Copy pathcot_tutorial.html
File metadata and controls
51 lines (45 loc) · 2.23 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
46
47
48
49
50
51
<!doctype html>
<html lang="en" prefix="og: http://ogp.me/ns#">
<head>
<meta charset="utf-8">
<title>SkyTemple - c-of-time</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5">
<meta name="theme-color" content="#ffffff">
<link rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap">
<link href="https://fonts.googleapis.com/css2?family=VT323&display=swap" rel="stylesheet">
<link rel="stylesheet" href="/css/styles.css?v=3.0">
</head>
<body>
<canvas id="bgCanvas"></canvas>
<!-- Content -->
<div class="page-content">
<div class="content-box">
<h1>c-of-time</h1>
<p>The c-of-time tutorial video is still under construction. In the meantime you can read the documentation of c-of-time and Rust of Darkness.</p>
<ul>
<li><a href="https://github.com/skytemple/c-of-time#c-of-time">c-of-time README</a>. Start here if you want to write patches in C.</li>
<li><a href="https://github.com/skytemple/c-of-time/tree/rust/rust#rust-of-darkness">Rust of Darkness README</a>. Start here if you want to write patches in Rust (and optionally C). Note that currently (June 2023) the Rust subsystem is only in the `rust` branch of the linked repository and not up-to-date with current reverse engineering efforts.</li>
</ul>
<p class="centered"><a href="/">skytemple.org</a></p>
</div>
</div>
<script src="/js/polyfill.min.js"></script>
<script src="/js/util.js"></script>
<script src="/js/dungeon/dma.js"></script>
<script src="/js/dungeon/dungeon.js"></script>
<script src="/js/dungeon/monster.js"></script>
<script src="/js/dungeon/sprite.js"></script>
<script src="/js/dungeon/turn.js"></script>
<script src="/js/bg.js"></script>
<script>
var bg = new Bg(document.getElementById('bgCanvas'))
bg.start();
</script>
</body>
</html>