/*
* Author: Livinia Poo
* Date: 24/1/25
* Description:
* Game Manager
*/
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class GameManager : MonoBehaviour
{
///
/// Assign GM instance
///
public static GameManager instance;
///
/// References and Variables
///
public bool dayEnded = false;
public bool shiftStarted;
public GameObject currentNPC;
[Header("Walk Points (FOR DEBUGGING")]
public Transform[] frontWalkPoints;
public Transform[] leftWalkPoints;
public Transform[] rightWalkPoints;
public GameObject leftWalkPointSet;
public GameObject rightWalkPointSet;
///
/// Do Not Destroy on Load
///
private void Awake()
{
if (instance == null)
{
instance = this;
DontDestroyOnLoad(gameObject);
}
else
{
Destroy(gameObject);
}
}
}