mirror of
https://github.com/an-anime-team/an-anime-game-launcher.git
synced 2025-01-01 22:47:19 +03:00
2ce673367b
- made settings window - added runners management. Now you can download some runner like proton-ge and run the game with it - updated README pictures - removed usused path files - a lot of small changes and bug fixes
53 lines
1.3 KiB
HTML
53 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
|
|
<!-- CSS styles -->
|
|
<link rel="stylesheet" href="../css/settings.css">
|
|
|
|
<!-- JS scripts -->
|
|
<script>require('../js/settings.js');</script>
|
|
|
|
<title>Settings</title>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="menu">
|
|
<div class="menu-item menu-item-active" anchor="general">General</div>
|
|
<div class="menu-item" anchor="runners">Runners</div>
|
|
</div>
|
|
|
|
<div class="settings">
|
|
<div class="settings-item" id="general">
|
|
<h2>General</h2>
|
|
|
|
123<br>
|
|
123<br>
|
|
123<br>
|
|
123<br>
|
|
123<br>
|
|
123<br>
|
|
123<br>
|
|
123<br>
|
|
123<br>
|
|
123<br>
|
|
123<br>
|
|
123<br>
|
|
123<br>
|
|
123<br><br>
|
|
|
|
Will be made in beta 6
|
|
|
|
</div>
|
|
|
|
<div class="settings-item" id="runners">
|
|
<h2>Runners</h2>
|
|
|
|
<div class="list" id="runners-list"></div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|