namespace Hotfix { public interface IEvent { void Run(); } public interface IEvent { void Run(A a); } public interface IEvent { void Run(A a, B b); } public interface IEvent { void Run(A a, B b, C c); } }