Fixed compiler error
This commit is contained in:
@@ -7,10 +7,23 @@ using System.Text;
|
|||||||
|
|
||||||
namespace Microsoft.Xna.Framework.Graphics
|
namespace Microsoft.Xna.Framework.Graphics
|
||||||
{
|
{
|
||||||
|
public interface ISpriteBatch
|
||||||
|
{
|
||||||
|
public void Draw(Texture2D texture,
|
||||||
|
Vector2 position,
|
||||||
|
Rectangle? sourceRectangle,
|
||||||
|
Color color,
|
||||||
|
float rotation,
|
||||||
|
Vector2 origin,
|
||||||
|
Vector2 scale,
|
||||||
|
SpriteEffects effects,
|
||||||
|
float layerDepth);
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Helper class for drawing text strings and sprites in one or more optimized batches.
|
/// Helper class for drawing text strings and sprites in one or more optimized batches.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public class SpriteBatch : GraphicsResource
|
public class SpriteBatch : GraphicsResource, ISpriteBatch
|
||||||
{
|
{
|
||||||
#region Private Fields
|
#region Private Fields
|
||||||
readonly SpriteBatcher _batcher;
|
readonly SpriteBatcher _batcher;
|
||||||
|
|||||||
Reference in New Issue
Block a user