mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-27 14:02:19 +00:00
21 lines
366 B
C#
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)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|