i3e-asg2/Assets/Scripts/GameManager.cs
2024-07-01 11:11:10 +08:00

22 lines
460 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class GameManager : MonoBehaviour
{
public static GameManager instance;
void Awake()
{
if (instance == null)
{
instance = this;
DontDestroyOnLoad(gameObject);
}
else if (instance != null && instance != this)
{
Destroy(gameObject);
}
}
public int playerHealth = 100;
}