Exemplo n.º 1
0
 public BattleHandlerSubscription(BattleHandler handler)
 {
     _handler = handler ?? throw new ArgumentNullException();
 }
Exemplo n.º 2
0
 public void Dispose()
 {
     _handler?.DecrementSubscriptionCounter();
     _handler = null;
 }