lowpoly-walking-simulator/directx11_hellovr/DirectXTK/MakeSpriteFont/IFontImporter.cs

26 lines
716 B
C#
Raw Normal View History

2024-11-14 11:54:38 +00:00
// DirectXTK MakeSpriteFont tool
//
// THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
// ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
// THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
// PARTICULAR PURPOSE.
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// 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; }
}
}