탑뷰 슈팅 게임 미니 프로젝트

This commit is contained in:
2026-01-24 01:14:28 +09:00
parent 6753e7f013
commit 22b17ebff9
442 changed files with 165828 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
using UnityEngine;
using UnityEngine.SceneManagement;
public class GameOverManager : MonoBehaviour
{
// Start is called once before the first execution of Update after the MonoBehaviour is created
void Start()
{
}
// Update is called once per frame
void Update()
{
}
public void OnPressPlayAgain()
{
SceneManager.LoadScene("GameScene");
}
public void OnPressMainMenu()
{
SceneManager.LoadScene("MainMenuScene");
}
}