mirror of
https://github.com/Alex-Rachel/TEngine.git
synced 2025-08-14 16:51:28 +00:00
Launcher
Launcher
This commit is contained in:
13
Assets/GameScripts/Main/Launcher/Scripts/UI/UIBase.cs
Normal file
13
Assets/GameScripts/Main/Launcher/Scripts/UI/UIBase.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
using UnityEngine;
|
||||
|
||||
namespace GameMain
|
||||
{
|
||||
public class UIBase : MonoBehaviour
|
||||
{
|
||||
protected object Param;
|
||||
public virtual void OnEnter(object param)
|
||||
{
|
||||
Param = param;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user