You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
348 B
C#
11 lines
348 B
C#
namespace LanLib.EventManager
|
|
{
|
|
public interface IClearableEventManager
|
|
{
|
|
/// <summary>
|
|
/// Clears listeners from specified event.
|
|
/// </summary>
|
|
/// <typeparam name="T">The type of event to remove listeners from. Must be a struct.</typeparam>
|
|
public void ClearEvent<T>() where T : struct;
|
|
}
|
|
} |