14 lines
197 B
C#
14 lines
197 B
C#
using UnityEngine;
|
|
using XRLib.UI;
|
|
|
|
namespace XED.UI
|
|
{
|
|
public class Panel_Inspector : PanelBase
|
|
{
|
|
public void Open()
|
|
{
|
|
SetActive(true);
|
|
}
|
|
}
|
|
}
|