SoftwareEngineering2/winVCR/VCRlogic/SMtape.cs
2019-04-06 14:10:00 +02:00

29 lines
285 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
{
}