CANVAS WORKS

This commit is contained in:
lars
2020-10-13 14:49:43 +02:00
parent 245130a648
commit e792d28746
7 changed files with 171 additions and 6 deletions

View File

@@ -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;
}
}