11 lines
233 B
C#
11 lines
233 B
C#
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();
|
|
}
|