Basic template

This commit is contained in:
2024-03-13 15:26:41 +01:00
parent d11fc1c967
commit 41545ea763
10 changed files with 4984 additions and 0 deletions

11
src/index.html Normal file
View File

@@ -0,0 +1,11 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Game template</title>
</head>
<body>
<script type="module" src="index.ts"></script>
</body>
</html>

1
src/index.ts Normal file
View File

@@ -0,0 +1 @@
alert(`Hi from Electron`);