mirror of
https://github.com/sigmasternchen/DrunkenMan
synced 2025-03-14 23:49:02 +00:00
26 lines
737 B
HTML
Executable file
26 lines
737 B
HTML
Executable file
<html>
|
|
<head>
|
|
<title>Drunken Man Simulator</title>
|
|
<style type="text/css">
|
|
/* disables client modification of cursor */
|
|
body, convas, div {
|
|
-moz-user-select: none;
|
|
-khtml-user-select: none;
|
|
-webkit-user-select: none;
|
|
user-select: none;
|
|
}
|
|
/* prevents body scrolbars from appearing */
|
|
body {
|
|
overflow: hidden;
|
|
}
|
|
</style>
|
|
<!-- debugger lib -->
|
|
<script type="text/javascript" src="scripts/libs/Debugger.js"></script>
|
|
<!-- miscellaneous lib -->
|
|
<script type="text/javascript" src="scripts/libs/Miscellaneous.js"></script>
|
|
<!-- main file (setup routine, events, etc) -->
|
|
<script type="text/javascript" src="scripts/main.js"></script>
|
|
</head>
|
|
<body onload="setup();">
|
|
</body>
|
|
</html>
|