using Microsoft.Xna.Framework.Graphics; using Syntriax.Engine.Core; namespace Syntriax.Engine.Integration.MonoGame; public interface IDrawableSprite : IBehaviour { void Draw(SpriteBatch spriteBatch); }