using Engine.Core; namespace Engine.Systems.Graphics; public interface IDrawableTriangle : IBehaviour { void Draw(ITriangleBatch triangleBatch); }