// ----------------------------------------------------------------------- // // TODO: Update copyright text. // // ----------------------------------------------------------------------- namespace Nintenlord.GBA_Graphics_Editor { using System; using System.Collections.Generic; using System.Linq; using System.Text; using Nintenlord.ROMHacking.GBA; /// /// TODO: Update summary. /// public class GraphicsData : IComparable { public int Offset { get; set; } public int PaletteOffset { get; set; } public bool Compressed { get; set; } public bool PaletteCompressed { get; set; } #region IComparable Members public int CompareTo(GraphicsData other) { return this.Offset - other.Offset; } #endregion } }