9 lines
151 B
C#
9 lines
151 B
C#
using Engine.Core;
|
|
|
|
namespace Engine.Integration.MonoGame;
|
|
|
|
public interface IDrawableSprite : IBehaviour
|
|
{
|
|
void Draw(ISpriteBatch spriteBatch);
|
|
}
|