diff options
Diffstat (limited to 'src/core/IEventRegistry.cs')
| -rwxr-xr-x | src/core/IEventRegistry.cs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/core/IEventRegistry.cs b/src/core/IEventRegistry.cs new file mode 100755 index 0000000..db9c475 --- /dev/null +++ b/src/core/IEventRegistry.cs @@ -0,0 +1,7 @@ +namespace core
+{
+ public interface IEventRegistry
+ {
+ void RegisterFor<Event>(ISubscribeTo<Event> subscriber);
+ }
+}
\ No newline at end of file |
