1
0
Fork 0
LaboratoryProtection/Assets/UnityTest/ZXL/Scripts/FireEvent.cs

13 lines
257 B
C#
Raw Normal View History

2023-09-13 15:04:19 +08:00
using Mono.Event;
using UnityEngine;
namespace UnityTest.ZXL
{
public class FireEvent : MonoBehaviour
{
public void Fire(string str)
{
EventManager.Instance.FireNow(this, new TimelineEventArgs(str));
}
}
}