mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-27 14:02:19 +00:00
20 lines
407 B
C#
20 lines
407 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Orvid.Graphics.FontSupport
|
|
{
|
|
public abstract class Font
|
|
{
|
|
public abstract String Name { get; }
|
|
public abstract Image GetCharacter(UInt64 charNumber, FontFlag flags);
|
|
}
|
|
|
|
[Flags]
|
|
public enum FontFlag
|
|
{
|
|
Normal = 1,
|
|
Bold = 2,
|
|
Italic = 3,
|
|
}
|
|
}
|