SoftwareEngineering2/winVCR/VCRlogic/SMtape.cs
2019-04-06 13:34:30 +02:00

26 lines
282 B
C#

using System;
using System.Runtime.CompilerServices;
public class SMtape
{
private SMtape _concreteState;
public SMtape()
{
}
}
public class SMtapeNoTapeIn : SMtape
{
}
public class SMtapeTapeInNotEnd : SMtape
{
}
public class SMtapeTapeInEnd : SMtape
{
}