This repository has been archived on 2023-09-13. You can view files and clone it, but cannot push or open issues or pull requests.
station_obscurum_unity/Assets/Scripts/SerializedObjects/GameState.cs

16 lines
343 B
C#
Raw Normal View History

2023-06-02 06:30:58 +02:00
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace Scriptable
{
[CreateAssetMenu(fileName = "GameState", menuName = "ScriptableObjects/GameStateManager", order = 1)]
public class GameState : ScriptableObject
{
[HideInInspector]
public bool IsPaused = false;
2023-06-15 17:34:45 +02:00
2023-06-02 06:30:58 +02:00
}
}