namespace BizHawk.Emulation.DiscSystem
{
///
/// Representation of a file in the file system.
///
public class ISOFileNode : ISONode
{
///
/// Constructor.
///
/// The record to construct from.
public ISOFileNode(ISONodeRecord record)
: base(record)
{
// Do Nothing
}
}
}