14 lines
521 B
C#
14 lines
521 B
C#
namespace mROA.Abstract
|
|
{
|
|
public delegate void ConnectionHandler(IRepresentationModule representationModule);
|
|
|
|
public delegate void DisconnectionHandler(IRepresentationModule representationModule);
|
|
|
|
public interface IConnectionHub : IInjectableModule
|
|
{
|
|
void RegisterInteraction(INextGenerationInteractionModule interaction);
|
|
INextGenerationInteractionModule GetInteracion(int id);
|
|
event ConnectionHandler? OnConnected;
|
|
event DisconnectionHandler? OnDisconnected;
|
|
}
|
|
} |