HeavenStudioPlus/Assets/Scripts/LevelEditor/Selector.cs

19 lines
371 B
C#
Raw Normal View History

2022-01-13 03:59:54 +00:00
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.EventSystems;
2022-01-13 03:59:54 +00:00
2022-03-14 14:21:05 +00:00
namespace HeavenStudio.Editor
2022-01-13 03:59:54 +00:00
{
public class Selector : MonoBehaviour
{
private bool clicked;
public static Selector instance { get; private set; }
private void Awake()
{
instance = this;
}
}
}