using Engine.Core; namespace Engine.Systems.Graphics; public interface ITriangleBatch { void Begin(Matrix4x4? view = null, Matrix4x4? projection = null); void Draw(Triangle triangle, ColorRGBA colorRGBA); void End(); }