CheckBox.Update C# (CSharp) Method

Update() private method

private Update ( ) : void
return void
    void Update()
    {
    }

Usage Example

Example #1
0
        public void UpdateTest()
        {
            Vector2    position = new Vector2();                // TODO: Initialize to an appropriate value
            SpriteFont font     = null;                         // TODO: Initialize to an appropriate value
            CheckBox   target   = new CheckBox(position, font); // TODO: Initialize to an appropriate value
            GameTime   time     = null;                         // TODO: Initialize to an appropriate value

            target.Update(time);
            Assert.Inconclusive("A method that does not return a value cannot be verified.");
        }
All Usage Examples Of CheckBox::Update