2013-08-19 03:42:40 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
2013-11-12 19:22:09 +00:00
|
|
|
|
namespace BizHawk.Emulation.Cores.Computers.Commodore64
|
2013-08-19 03:42:40 +00:00
|
|
|
|
{
|
2013-11-12 19:22:09 +00:00
|
|
|
|
public struct InputFileInfo
|
|
|
|
|
{
|
|
|
|
|
public byte[] Data;
|
|
|
|
|
public string Extension;
|
|
|
|
|
}
|
2013-08-19 03:42:40 +00:00
|
|
|
|
}
|