Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
alexbevi
GitHub Repository: alexbevi/BizHawk
Path: blob/master/BizHawk.Emulation.DiscSystem/CDFS/ISOFileNode.cs
2 views
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
	}
}