Added the Game Loop
This commit is contained in:
parent
28126de50c
commit
0f7d9022c4
2 changed files with 27 additions and 3 deletions
24
Lingo/GameLoop.cs
Normal file
24
Lingo/GameLoop.cs
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
namespace Lingo;
|
||||
|
||||
public class GameLoop
|
||||
{
|
||||
public string SelectedWord {
|
||||
get
|
||||
{
|
||||
return Setup.wordSelector();
|
||||
}
|
||||
private set;
|
||||
}
|
||||
public string InputWord {
|
||||
get
|
||||
{
|
||||
return Setup.inputWord();
|
||||
}
|
||||
private set;
|
||||
}
|
||||
|
||||
public GameLoop()
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
Loading…
Reference in a new issue