9 lines
153 B
C#
9 lines
153 B
C#
using Engine.Core;
|
|
|
|
namespace Engine.Systems.Graphics;
|
|
|
|
public interface IDrawableTriangle : IBehaviour
|
|
{
|
|
void Draw(ITriangleBatch triangleBatch);
|
|
}
|