mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-27 05:52:11 +00:00
10 lines
293 B
C#
10 lines
293 B
C#
using System;
|
|
using Orvid.Graphics.FontSupport.SupportClasses;
|
|
|
|
namespace Orvid.Graphics.FontSupport
|
|
{
|
|
public abstract class ITextRenderer
|
|
{
|
|
public abstract void Render(Image i, BoundingBox clip, AffineTransform trans, string text, Vec2 loc, Pixel color);
|
|
}
|
|
}
|