Neue Räume und Assets hinzugefügt. Alles verkackt und wieder repariert.

This commit is contained in:
Thorbjoern
2025-07-08 20:08:27 +02:00
parent 28cd11c683
commit 5a72292374
2385 changed files with 863054 additions and 20344 deletions
@@ -0,0 +1,24 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace SojaExiles
{
public class Quitgame : MonoBehaviour
{
// Start is called before the first frame update
void Start()
{
}
// Update is called once per frame
void Update()
{
if (Input.GetKeyDown(KeyCode.Escape))
{
Application.Quit();
}
}
}
}