TapTitanXNA_JonryBorbe.Button.LoadContent C# (CSharp) Method

LoadContent() private method

private LoadContent ( ) : void
return void
        private void LoadContent()
        {
            buttonTexture = content.Load<Texture2D>(buttonName);
            buttonRectangle = new Rectangle((int)buttonPosition.X, (int)buttonPosition.Y, buttonTexture.Width, buttonTexture.Height);
            buttonColor = Color.White;
            bState = BState.UP;
            timer = 0.0f;
        }