diff --git a/source/Trek-12/Models/Game/Position.cs b/source/Trek-12/Models/Game/Position.cs index d34ece5..980e80c 100644 --- a/source/Trek-12/Models/Game/Position.cs +++ b/source/Trek-12/Models/Game/Position.cs @@ -7,7 +7,7 @@ namespace Models.Game /// /// The Position (x,y) of a cell in the game. /// - public class Position : INotifyPropertyChanged + public class Position { /// /// The X coordinate. @@ -29,19 +29,5 @@ namespace Models.Game X = x; Y = y; } - - /// - /// Event raised when a property is changed to notify the view. - /// - public event PropertyChangedEventHandler PropertyChanged; - - /// - /// Trigger the PropertyChanged event for a specific property. - /// - /// Name of the property that changed. - protected virtual void OnPropertyChanged(string propertyName) - { - PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName)); - } } } \ No newline at end of file