Files
OpenMaidEngine/engine/Age.Engine/Model/RgbaImage.cs
2026-08-03 10:46:28 -04:00

5 lines
171 B
C#

namespace Age.Engine.Model;
/// <summary>A decoded, tightly packed, top-down RGBA8 image.</summary>
public sealed record RgbaImage(int Width, int Height, byte[] Pixels);