forked from zxl/Frame
1
0
Fork 0
Frame/Assets/Scripts/UI/UIInfo.cs

13 lines
158 B
C#
Raw Normal View History

2024-04-03 17:46:56 +08:00
using UnityEngine;
namespace Game
{
class UIInfo: MonoBehaviour
{
#if UNITY_EDITOR
[SerializeField]
public IUI ui;
#endif
}
}