End Menu with kills counts

This commit is contained in:
2023-10-22 18:53:08 +02:00
parent 838a037a35
commit 66dafbd3b5
11 changed files with 1802 additions and 23 deletions
+14
View File
@@ -0,0 +1,14 @@
using UnityEngine;
public class GameManager : MonoBehaviour
{
// Kills stats
public static int MayorKills = 0;
public static int MinautorKills = 0;
public static int BringerOfDeathKills = 0;
private void Awake()
{
DontDestroyOnLoad(gameObject);
}
}