using System.Collections.Generic; namespace MonoGame.Extended.Content.Pipeline.BitmapFonts { public class BitmapFontProcessorResult { public BitmapFontProcessorResult(string json) { TextureAssets = new List(); Json = json; } public List TextureAssets { get; private set; } public string Json { get; private set; } } }