You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
HighGroundRoyaleNetcode/Assets/Scripts/Gameplay/GameStateManager.cs

30 lines
660 B
C#

2 months ago
using UnityEngine;
using System;
public class GameStateManager : MonoBehaviour
{
public static GameStateManager Instance { get; private set; }
public event Action<CursorState> OnStateChanged ;
2 months ago
CursorState currentState = CursorState.Default;
2 months ago
void Awake( ) {
if ( Instance ) {
Destroy( gameObject ) ;
return ;
2 months ago
}
Instance = this ;
2 months ago
}
public void ChangeState( CursorState newState ) {
if ( currentState == newState ) return ;
currentState = newState ;
OnStateChanged?.Invoke( newState ) ;
2 months ago
}
public CursorState GetCurrentState( ) => currentState ;
2 months ago
}