namespace com.clusterrr.Famicom.Containers { /// /// FDS block interface /// public interface IFdsBlock { /// /// Returns the valid block type ID /// byte ValidTypeID { get; } /// /// Returns true if the block type ID is valid /// bool IsValid { get; } /// /// Length of raw block data /// uint Length { get; } /// /// Return raw data /// /// byte[] ToBytes(); } }