[+] Update Procedure Path And asmdef

[+] Update Procedure Path And asmdef
This commit is contained in:
ALEXTANG
2023-04-26 13:30:23 +08:00
parent 7db0d3fcc4
commit d3272e1bb1
33 changed files with 4 additions and 9 deletions

View File

@@ -0,0 +1,13 @@
using UnityEngine;
namespace GameMain
{
public class UIBase : MonoBehaviour
{
protected object Param;
public virtual void OnEnter(object param)
{
Param = param;
}
}
}