AIA.Sprite.Draw C# (CSharp) Method

Draw() public method

public Draw ( SpriteBatch p_SpriteBatch ) : void
p_SpriteBatch Microsoft.Xna.Framework.Graphics.SpriteBatch
return void
        public void Draw(SpriteBatch p_SpriteBatch)
        {
            p_SpriteBatch.Draw(_Texture, Pos,
                                _Rect, Colour, _Rotation, new Vector2(_Rect.X, _Rect.Y), _Scale ,_Effects, 0);
        }