Files
iFactory.Cutting.Unity/Assets/BITKit/Core/Utility/GenericCallback.cs

11 lines
220 B
C#
Raw Permalink Normal View History

2024-06-03 10:11:43 +08:00
using System.Collections.Generic;
namespace BITKit
{
public interface ICallback
{
void RegisterCallback<T>(T t);
void UnRegisterCallback<T>(T t);
IEnumerable<T> GetCallbacks<T>();
}
}