コード例 #1
0
ファイル: StatisticsAggregator.cs プロジェクト: ZgrK/PoGoBoT
 public void HandleEvent(ItemRecycledEvent evt, Context ctx)
 {
     _stats.TotalItemsRemoved++;
     _stats.Dirty(ctx.Inventory);
 }
コード例 #2
0
ファイル: ConsoleEventListener.cs プロジェクト: ZgrK/PoGoBoT
 public void HandleEvent(ItemRecycledEvent evt, Context ctx)
 {
     Logger.Write($"{evt.Count}x {evt.Id}", LogLevel.Recycling);
 }