14 lines
250 B
C#
14 lines
250 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
namespace MuHua {
|
|
/// <summary>
|
|
/// UI控制接口
|
|
/// </summary>
|
|
public interface UIControl {
|
|
/// <summary> 更新UI状态 </summary>
|
|
public void Update();
|
|
}
|
|
}
|