Engine-Pong/Shared/Abstract/IDisplayableSprite.cs
2025-04-11 20:03:03 +03:00

9 lines
170 B
C#

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