using Microsoft.Xna.Framework; using Engine.Core; namespace Engine.Integration.MonoGame; public interface ITriangleBatch { void Begin(Matrix? view = null, Matrix? projection = null); void Draw(Triangle triangle, ColorRGBA colorRGBA); void End(); }