Cosmos/source/Archive/Cosmos.Kernel.FileSystems/FAT32/DirectoryTable.cs
2017-07-03 11:27:32 -04:00

19 lines
353 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Cosmos.Sys.FileSystem.FAT32
{
public class DirectoryTable
{
FAT fat;
uint cluster;
public DirectoryTable(FAT fat, uint cluster)
{
this.fat = fat;
this.cluster = cluster;
}
}
}