Added new assets

This commit is contained in:
Vladimir Koshevarov
2023-02-20 19:02:00 +02:00
parent 92a2aa49e5
commit 6388763d98
1501 changed files with 702875 additions and 637 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();
}
}
}
}