Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ClusterM/nes-containers.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2022-11-04 09:54:34 +0300
committerAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2022-11-04 09:57:58 +0300
commitbc05122b12da25b30f011d5ef6a2277863413b50 (patch)
tree97f3e5500983e64089e22223a12bc3bd9e0dc19f /IFdsBlock.cs
parenta84c08415c43dad08c73e23f75e8d2cdd99174a9 (diff)
Comments and minor changes
Diffstat (limited to 'IFdsBlock.cs')
-rw-r--r--IFdsBlock.cs16
1 files changed, 16 insertions, 0 deletions
diff --git a/IFdsBlock.cs b/IFdsBlock.cs
index 37a4ac0..836b670 100644
--- a/IFdsBlock.cs
+++ b/IFdsBlock.cs
@@ -1,10 +1,26 @@
namespace com.clusterrr.Famicom.Containers
{
+ /// <summary>
+ /// FDS block interface
+ /// </summary>
public interface IFdsBlock
{
+ /// <summary>
+ /// Returns the valid block type ID
+ /// </summary>
byte ValidTypeID { get; }
+ /// <summary>
+ /// Returns true if the block type ID is valid
+ /// </summary>
bool IsValid { get; }
+ /// <summary>
+ /// Length of raw block data
+ /// </summary>
uint Length { get; }
+ /// <summary>
+ /// Return raw data
+ /// </summary>
+ /// <returns></returns>
byte[] ToBytes();
}
}