Files
BlueArchiveMiniGame/Assets/ThirdParty/UniFramework/UniEvent/Runtime/UniEventDriver.cs

12 lines
154 B
C#
Raw Normal View History

2025-09-17 18:56:28 +08:00
using UnityEngine;
namespace UniFramework.Event
{
internal class UniEventDriver : MonoBehaviour
{
void Update()
{
UniEvent.Update();
}
}
}