mirror of
https://github.com/Alex-Rachel/TEngine.git
synced 2025-08-14 16:51:28 +00:00
13 lines
226 B
C#
13 lines
226 B
C#
using UnityEngine;
|
|
|
|
namespace GameMain
|
|
{
|
|
public class UIBase : MonoBehaviour
|
|
{
|
|
protected object Param;
|
|
public virtual void OnEnter(object param)
|
|
{
|
|
Param = param;
|
|
}
|
|
}
|
|
} |