Engine-Pong/Shared/Abstract/IDisplayableSprite.cs
2025-04-15 23:42:06 +03:00

9 lines
161 B
C#

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