Draw() public method

public Draw ( SpriteBatch theSpriteBatch ) : void
theSpriteBatch Microsoft.Xna.Framework.Graphics.SpriteBatch
return void
Example #1
0
 public void DrawTest()
 {
     Sprite target = new Sprite(); // TODO: Initialize to an appropriate value
     SpriteBatch theSpriteBatch = null; // TODO: Initialize to an appropriate value
     target.Draw(theSpriteBatch);
     Assert.Inconclusive("A method that does not return a value cannot be verified.");
 }