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