Example #1
0
 public GameWindowVM()
 {
     if (operation == null)
     {
         operation = new GameWIndowOperations(this);
     }
 }
Example #2
0
 public GameWindowVM(User _selectedUser)
 {
     if (operation == null)
     {
         operation = new GameWIndowOperations(this);
         operation.FillDict();
         SelectedUser = _selectedUser;
         CurrentGame  = new Game();
     }
 }