Store in GIT
This commit is contained in:
@@ -0,0 +1,41 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Pannenkoekenhuis.State
|
||||
{
|
||||
class WaitingState : State
|
||||
{
|
||||
public State BrengBestelling()
|
||||
{
|
||||
return new EatingState();
|
||||
}
|
||||
|
||||
public State BrengMenuKaart()
|
||||
{
|
||||
return this;
|
||||
}
|
||||
|
||||
public State BrengRekening()
|
||||
{
|
||||
return this;
|
||||
}
|
||||
|
||||
public State DeelWensMee()
|
||||
{
|
||||
return this;
|
||||
}
|
||||
|
||||
public State Instance()
|
||||
{
|
||||
return new WaitingState();
|
||||
}
|
||||
|
||||
public override string ToString()
|
||||
{
|
||||
return "Waiting";
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user