using Microsoft.Xna.Framework;
namespace StardewModdingAPI
{
/// The raw data for an image read from the filesystem.
public interface IRawTextureData
{
/// The image width.
int Width { get; }
/// The image height.
int Height { get; }
/// The loaded image data.
Color[] Data { get; }
}
}