mirror of
https://github.com/AlexMacocian/MonoGame.Extended.git
synced 2026-07-24 03:56:31 +00:00
16 lines
454 B
C#
16 lines
454 B
C#
using System.Collections.Generic;
|
|
using MonoGame.Extended.Serialization;
|
|
using MonoGame.Extended.TextureAtlases;
|
|
|
|
namespace MonoGame.Extended.Gui.Serialization
|
|
{
|
|
public interface IGuiTextureRegionService : ITextureRegionService
|
|
{
|
|
IList<TextureAtlas> TextureAtlases { get; }
|
|
IList<NinePatchRegion2D> NinePatches { get; }
|
|
}
|
|
|
|
public class GuiTextureRegionService : TextureRegionService, IGuiTextureRegionService
|
|
{
|
|
}
|
|
} |