-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathindex.html
49 lines (38 loc) · 1.75 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
<!DOCTYPE html>
<html>
<head>
<!--Meta-->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="UTF-8">
<!--Fonts-->
<link href="https://fonts.googleapis.com/css2?family=Raleway:wght@300&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@100&display=swap" rel="stylesheet">
<!--Styles-->
<link rel="stylesheet" href="css/universal.css">
<link rel="stylesheet" href="css/index.css">
<!-- title -->
<title>The MMORPG Project</title>
</head>
<body>
<div class="space"></div>
<h1>The MMORPG Project</h1>
<h2>About</h2>
<p>The purpose of this project is to make multiplayer in Unity a piece of cake, specifically for MMORPGs. The
project consists of a launcher, a web server, a game server and a client. The idea is the user loads up the
launcher, updates the client, launches the client, logs in to an account through the web server and then
connects to the game server.</p>
<h2>Repositories</h2>
<h3>Launcher</h3>
<p>The <a href="https://github.com/The-MMORPG-Project/Launcher">launcher</a> retrieves and launches the latest
client releases.</p>
<h3>Client</h3>
<p>The <a href="https://github.com/The-MMORPG-Project/Client">client</a> is what connects to the web and game
servers.</p>
<h3>Web Server</h3>
<p>The <a href="https://github.com/The-MMORPG-Project/Web-Server">web server</a> has a website to download the
launcher and a database for user authentication.</p>
<h3>Game Server</h3>
<p>The <a href="https://github.com/The-MMORPG-Project/Game-Server">game server</a> handles all game related
networking events.</p>
</body>
</html>