9 lines
175 B
C#
9 lines
175 B
C#
using Syntriax.Engine.Core;
|
|
|
|
namespace Syntriax.Engine.Integration.MonoGame;
|
|
|
|
public interface IDrawableTriangle : IBehaviour
|
|
{
|
|
void Draw(ITriangleBatch triangleBatch);
|
|
}
|