示例#1
0
 public NDSFile(NDSFilesystem fs, ushort entryID, string name)
 {
     Filesystem    = fs;
     EntryID       = entryID;
     Name          = name;
     latestVersion = RetrieveOriginalData().GetAsArrayCopy();
 }
 /// <summary>
 /// Locate and create a directory from the root of a ROM file.
 /// </summary>
 /// <param name="rom">The ROM to use.</param>
 public NDSDirectory(NDSFilesystem fs, ushort entryID, string name)
 {
     Filesystem = fs;
     EntryID    = entryID;
     Name       = name;
 }