MerchantRPG.GeneticParty.Processing.HeroBuild.HeroBuild C# (CSharp) Method

HeroBuild() public method

public HeroBuild ( int heroType, int items, int potionTypes, int potionCounts ) : System
heroType int
items int
potionTypes int
potionCounts int
return System
		public HeroBuild(int heroType, int[] items, int[] potionTypes, int[] potionCounts)
		{
			this.HeroType = heroType;
			this.Items = items;
			this.EnhancmentCounts = potionCounts;
			this.EnhancmentTypes = potionTypes;
		}
	}
HeroBuild