13 lines
158 B
C#
13 lines
158 B
C#
|
using UnityEngine;
|
|||
|
|
|||
|
namespace Game
|
|||
|
{
|
|||
|
class UIInfo: MonoBehaviour
|
|||
|
{
|
|||
|
#if UNITY_EDITOR
|
|||
|
|
|||
|
[SerializeField]
|
|||
|
public IUI ui;
|
|||
|
#endif
|
|||
|
}
|
|||
|
}
|