first commit

This commit is contained in:
2026-05-25 23:53:50 +03:00
commit 5081d01aa4
77 changed files with 16985 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
using UnityEngine;
public class LevelExitTrigger : MonoBehaviour
{
private void OnTriggerEnter(Collider other)
{
if (!other.CompareTag("Player"))
{
return;
}
QuestManager.Instance?.FinishLevel();
}
}