Engine-Pong/Game/Abstract/IDisplayableSprite.cs

9 lines
170 B
C#

using Microsoft.Xna.Framework.Graphics;
namespace Syntriax.Engine.Core.Abstract;
public interface IDisplayableSprite
{
public void Draw(SpriteBatch spriteBatch);
}