Project290.Games.Solitude.SolitudeObjects.Player.Reset C# (CSharp) Method

Reset() public method

public Reset ( ) : void
return void
        public void Reset()
        {
            hasGloves = false;
            hasBoots = false;
            hasENVSuit = false;
            hasSpaceSuit = false;
            hasJetpack = false;
            hasUsedJetPack = false;

            JetPackState = 1;

            enterPosition.X = 900;
            enterPosition.Y = 830;

            oxygen = 1000;
            oxygenCap = 1000;
            fuel = 500;
            fuelCap = 500;
            lives = 3;
            numBombs = 10;

            hasDiedRecently = false;

            standingOn = null;
            onWall = true;
            jumpCounter = 0;
        }