24 lines
No EOL
351 B
C#
24 lines
No EOL
351 B
C#
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()
|
|
{
|
|
|
|
}
|
|
} |