Cosmos/source2/Users/Orvid/Orvid.Graphics/FontSupport/FontCharacter.cs

21 lines
366 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Orvid.Graphics.FontSupport
{
public class FontCharacter
{
Image[] forms;
public FontCharacter(Image character, FontFlag flags)
{
}
public void AddForm(Image character, FontFlag flags)
{
}
}
}