using Microsoft.Xna.Framework; namespace StardewModdingAPI.Framework.Content { /// The raw data for an image read from the filesystem. /// The image width. /// The image height. /// The loaded image data. internal record RawTextureData(int Width, int Height, Color[] Data) : IRawTextureData; }