BizHawk/BizHawk.Emulation.Cores/Computers/Commodore64/InputFileInfo.cs

14 lines
247 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace BizHawk.Emulation.Cores.Computers.Commodore64
{
public struct InputFileInfo
{
public byte[] Data;
public string Extension;
}
}