changed names

This commit is contained in:
shinichi
2020-10-07 21:21:12 +02:00
parent a23b268dc9
commit e09f4f1325
4 changed files with 8 additions and 8 deletions

View File

@@ -18,12 +18,12 @@ namespace ClientApp.ViewModels
this.RetryServerCommand = new RelayCommand(() =>
{
//try connect server
this.MainWindowViewModel.infoModel.ConnectedToServer = true;
this.MainWindowViewModel.InfoModel.ConnectedToServer = true;
});
this.RetryVREngineCommand = new RelayCommand(() =>
{
//try connect vr-engine
this.MainWindowViewModel.infoModel.ConnectedToVREngine = true;
this.MainWindowViewModel.InfoModel.ConnectedToVREngine = true;
});
}
}