12 lines
154 B
C#
12 lines
154 B
C#
|
using UnityEngine;
|
|||
|
|
|||
|
namespace UniFramework.Event
|
|||
|
{
|
|||
|
internal class UniEventDriver : MonoBehaviour
|
|||
|
{
|
|||
|
void Update()
|
|||
|
{
|
|||
|
UniEvent.Update();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|