コード例 #1
0
ファイル: ItemBuyResult.cs プロジェクト: zerratar/RavenNest
 public ItemBuyResult(
     ItemTradeState state,
     long[] amountBought,
     double[] costPerItem,
     long totalAmount,
     double totalCost)
 {
     State        = state;
     AmountBought = amountBought;
     CostPerItem  = costPerItem;
     TotalAmount  = totalAmount;
     TotalCost    = totalCost;
 }
コード例 #2
0
ファイル: ItemSellResult.cs プロジェクト: zerratar/RavenNest
 public ItemSellResult(ItemTradeState state)
 {
     this.State = state;
 }