27 lines
504 B
C#
27 lines
504 B
C#
![]() |
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace BizHawk.Emulation.DiscSystem
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Representation of a file in the file system.
|
|||
|
/// </summary>
|
|||
|
public class ISOFileNode : ISONode
|
|||
|
{
|
|||
|
#region Construction
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Constructor.
|
|||
|
/// </summary>
|
|||
|
/// <param name="record">The record to construct from.</param>
|
|||
|
public ISOFileNode(ISONodeRecord record)
|
|||
|
: base(record)
|
|||
|
{
|
|||
|
// Do Nothing
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
}
|
|||
|
}
|