mirror of
https://github.com/ncblakely/GiantsTools
synced 2024-11-05 14:55:38 +01:00
22 lines
519 B
C#
22 lines
519 B
C#
// DirectXTK MakeSpriteFont tool
|
|
//
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// Licensed under the MIT License.
|
|
//
|
|
// http://go.microsoft.com/fwlink/?LinkId=248929
|
|
|
|
using System.Collections.Generic;
|
|
|
|
namespace MakeSpriteFont
|
|
{
|
|
// Importer interface allows the conversion tool to support multiple source font formats.
|
|
public interface IFontImporter
|
|
{
|
|
void Import(CommandLineOptions options);
|
|
|
|
IEnumerable<Glyph> Glyphs { get; }
|
|
|
|
float LineSpacing { get; }
|
|
}
|
|
}
|