Engine-Pong/Game/Abstract/IDisplayableSprite.cs

9 lines
170 B
C#
Raw Normal View History

2024-01-23 12:15:24 +03:00
using Microsoft.Xna.Framework.Graphics;
namespace Syntriax.Engine.Core.Abstract;
public interface IDisplayableSprite
2024-01-23 12:15:24 +03:00
{
public void Draw(SpriteBatch spriteBatch);
}