using System;
using System.Collections.Generic;
using System.Text;
namespace BizHawk.Emulation.DiscSystem
{
///
/// Representation of a file in the file system.
///
public class ISOFileNode : ISONode
{
#region Construction
///
/// Constructor.
///
/// The record to construct from.
public ISOFileNode(ISONodeRecord record)
: base(record)
{
// Do Nothing
}
#endregion
}
}