示例#1
0
 public IDisposable SubscribeToMeteorDestroyedNotifications(IReceiveNotifications <MeteorDestroyedNotificationArguments> handler)
 {
     return(_meteorDestroyedUpdateChannel.AddSubscriber(handler));
 }
示例#2
0
 public IDisposable SubscribeToPlayerDiedNotifications(IReceiveNotifications <PlayerDiedNotification> handler)
 {
     return(_playerDiedUpdateChannel.AddSubscriber(handler));
 }
示例#3
0
 public IDisposable SubscribeToPlayerScoreChanges(IReceiveNotifications <PlayerScoreNotificationArguments> handler)
 {
     return(_playerScoreUpdateChannel.AddSubscriber(handler));
 }