mirror of
https://github.com/AlexMacocian/MonoGame.Extended.git
synced 2026-07-24 12:06:37 +00:00
16 lines
411 B
C#
16 lines
411 B
C#
using System.Collections.Generic;
|
|
|
|
namespace MonoGame.Extended.Content.Pipeline.BitmapFonts
|
|
{
|
|
public class BitmapFontProcessorResult
|
|
{
|
|
public BitmapFontProcessorResult(string json)
|
|
{
|
|
TextureAssets = new List<string>();
|
|
Json = json;
|
|
}
|
|
|
|
public List<string> TextureAssets { get; private set; }
|
|
public string Json { get; private set; }
|
|
}
|
|
} |