Пример #1
0
 private void DebugStockFilled()
 {
     DebugExt.DebugSpecifiedReport("Stock on stockpile labelled " + stockpile.label + " filled. Current stock: " + stockpile.currentStock, stockFilledReport);
 }
Пример #2
0
 private void DebugStockEmpted()
 {
     DebugExt.DebugSpecifiedReport("Stock on stockpile labelled " + stockpile.label + " emptied.", stockEmptiedReport);
 }
Пример #3
0
 private void DebugStockChange(int change)
 {
     DebugExt.DebugSpecifiedReport("Stock on stockpile labelled " + stockpile.label + " changed by " + change + ". Current stock: " + stockpile.currentStock, stockChangedReport);
 }