WorldProperties.SetInitialParams C# (CSharp) Méthode

SetInitialParams() public méthode

public SetInitialParams ( int width, int height, int initialPressure, int initialTemp ) : void
width int
height int
initialPressure int
initialTemp int
Résultat void
    public void SetInitialParams(int width, int height, int initialPressure, int initialTemp)
    {
        worldWidth = width;
        worldHeight = height;
        pressure = initialPressure;
        temperature = initialTemp;
    }