mirror of
https://github.com/Stone-Red-Code/RemSox.git
synced 2026-09-04 23:42:00 +02:00
7 lines
146 B
C#
7 lines
146 B
C#
namespace RemSox.UI.GUI.Rendering;
|
|
|
|
public interface IRenderSource
|
|
{
|
|
void Render(IEnumerable<RenderCommand> commands);
|
|
void Composite();
|
|
} |