diff --git a/Client/Model.cs b/Client/Models/Model.cs similarity index 100% rename from Client/Model.cs rename to Client/Models/Model.cs diff --git a/Client/ViewModel.cs b/Client/ViewModels/ViewModel.cs similarity index 100% rename from Client/ViewModel.cs rename to Client/ViewModels/ViewModel.cs diff --git a/Client/ViewModels/ViewModelGame.cs b/Client/ViewModels/ViewModelGame.cs new file mode 100644 index 0000000..831253b --- /dev/null +++ b/Client/ViewModels/ViewModelGame.cs @@ -0,0 +1,16 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Text; + +namespace Client.ViewModels +{ + class ViewModelGame : INotifyPropertyChanged + { + public event PropertyChangedEventHandler PropertyChanged; + + + + + } +} diff --git a/Client/Views/GameWindow.xaml b/Client/Views/GameWindow.xaml new file mode 100644 index 0000000..5998e63 --- /dev/null +++ b/Client/Views/GameWindow.xaml @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + +