Files
HauntedBloodlines/Assets/Scripts/Managers/DrawersManager.cs
2025-05-29 22:31:40 +03:00

32 lines
574 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class DrawersManager : MonoBehaviour
{
[HideInInspector] public bool IsDraggingADrawer;
private static DrawersManager _instance;
public static DrawersManager GetInstance() { return _instance; }
void Awake()
{
if (!_instance)
{
_instance = this;
}
}
// Start is called before the first frame update
void Start()
{
}
// Update is called once per frame
void Update()
{
}
}