BizHawk/ExternalCoreProjects/Virtu/Cassette.cs

23 lines
407 B
C#
Raw Normal View History

2015-02-17 22:58:25 +00:00
using System.Diagnostics.CodeAnalysis;
namespace Jellyfish.Virtu
{
public sealed class Cassette : MachineComponent
{
2015-05-18 00:14:00 +00:00
public Cassette() { }
2015-02-17 22:58:25 +00:00
public Cassette(Machine machine) :
base(machine)
{
}
public bool ReadInput()
{
return false;
}
public void ToggleOutput()
{
}
}
}