LootFactory.addItemToDict C# (CSharp) Method

addItemToDict() private method

private addItemToDict ( System type, int weight ) : void
type System
weight int
return void
	void addItemToDict(System.Type type, int weight){
		weightSum += weight;
		items.Add(type, new LootWeights(weight, weightSum));
	}