10 lines
218 B
C#
10 lines
218 B
C#
|
using Microsoft.Xna.Framework.Graphics;
|
||
|
using Syntriax.Engine.Core.Abstract;
|
||
|
|
||
|
namespace Syntriax.Engine.Core.Behaviours;
|
||
|
|
||
|
public interface IDrawBehaviour : IBehaviour
|
||
|
{
|
||
|
public void Draw(SpriteBatch spriteBatch);
|
||
|
}
|