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

14 lines
262 B
C#
Raw Normal View History

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