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>2021-04-26 07:07:04 +0300
committerAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2021-04-26 07:07:04 +0300
commit9a9710790414f3d13e3be23c946ad841ad4e8cc7 (patch)
treef3a0db0865eda117aec2819cf89dac63519fe125
parent526245c8e1298eb0a5cfee0e929f054cf8033158 (diff)
Comments
-rw-r--r--UnifFile.cs11
1 files changed, 8 insertions, 3 deletions
diff --git a/UnifFile.cs b/UnifFile.cs
index f6d586c..c5d2448 100644
--- a/UnifFile.cs
+++ b/UnifFile.cs
@@ -1,10 +1,8 @@
using System;
using System.Collections.Generic;
+using System.IO;
using System.Linq;
using System.Text;
-using System.IO;
-using System.ComponentModel;
-using System.Net.NetworkInformation;
namespace com.clusterrr.Famicom.Containers
{
@@ -13,7 +11,14 @@ namespace com.clusterrr.Famicom.Containers
/// </summary>
public class UnifFile
{
+ /// <summary>
+ /// UNIF fields
+ /// </summary>
public Dictionary<string, byte[]> Fields = new Dictionary<string, byte[]>();
+
+ /// <summary>
+ /// UNIF version
+ /// </summary>
public int Version = 7;
public UnifFile()