2026-03-24 11:39:01 +08:00

8 lines
118 B
C#

using System;
using UnityEngine;
public interface ITrigger
{
void Trigger(Action<GameObject> callback = null);
}