9 lines
194 B
C#
9 lines
194 B
C#
using System;
|
|
|
|
namespace DanieleMarotta.RiversongCodeShowcase
|
|
{
|
|
public interface ICancelAction
|
|
{
|
|
void AddHandler(int priority, Func<CancelActionType, bool> cancelAction);
|
|
}
|
|
} |