mirror of
https://github.com/Alex-Rachel/TEngine.git
synced 2025-08-07 16:45:10 +00:00
16 lines
289 B
C#
16 lines
289 B
C#
using UnityEngine;
|
|
|
|
namespace Launcher
|
|
{
|
|
/// <summary>
|
|
/// 热更UI基类。
|
|
/// </summary>
|
|
public class UIBase : MonoBehaviour
|
|
{
|
|
protected object Param;
|
|
public virtual void OnEnter(object param)
|
|
{
|
|
Param = param;
|
|
}
|
|
}
|
|
} |