mirror of
https://github.com/kwsch/pk3DS.git
synced 2026-08-02 17:53:11 -05:00
16 lines
408 B
C#
16 lines
408 B
C#
namespace pk3DS.Core.CTR
|
|
{
|
|
/// <summary>
|
|
/// <see cref="BCLIM"/> and <see cref="BFLIM"/> header interface.
|
|
/// </summary>
|
|
public interface IXLIMHeader
|
|
{
|
|
uint Magic { get; set; }
|
|
ushort Width { get; set; }
|
|
ushort Height { get; set; }
|
|
XLIMEncoding Format { get; set; }
|
|
XLIMOrientation Orientation { get; set; }
|
|
|
|
bool Valid { get; }
|
|
}
|
|
} |