BuildingInformation.BuildingInformation C# (CSharp) Method

BuildingInformation() public method

public BuildingInformation ( int ID, int fireCost, int earthCost, int waterCost, int airCost, int levelRequirement )
ID int
fireCost int
earthCost int
waterCost int
airCost int
levelRequirement int
    public BuildingInformation(int ID, int fireCost, int earthCost, int waterCost, int airCost, int levelRequirement)
    {
        this.id = ID;
        this.fireCost = fireCost;
        this.earthCost = earthCost;
        this.waterCost = waterCost;
        this.airCost = airCost;
        this.levelRequirement = levelRequirement;
    }
BuildingInformation