refactor: rename NotifyPropertyChanged to ObservableObject

This commit is contained in:
k0t9i
2023-01-31 19:09:07 +04:00
parent bd50473bfb
commit 5388dea95f
16 changed files with 16 additions and 16 deletions

View File

@@ -2,7 +2,7 @@
namespace Client.Domain.ValueObjects
{
public class ExperienceInfo : NotifyPropertyChanged
public class ExperienceInfo : ObservableObject
{
private uint level;
private uint exp;

View File

@@ -2,7 +2,7 @@
namespace Client.Domain.ValueObjects
{
public class FullName : NotifyPropertyChanged
public class FullName : ObservableObject
{
private string nickname;
private string title;

View File

@@ -2,7 +2,7 @@
namespace Client.Domain.ValueObjects
{
public class InventoryInfo : NotifyPropertyChanged
public class InventoryInfo : ObservableObject
{
private uint maxWeight;
private uint weight;

View File

@@ -3,7 +3,7 @@ using Client.Domain.Enums;
namespace Client.Domain.ValueObjects
{
public class Phenotype : NotifyPropertyChanged
public class Phenotype : ObservableObject
{
private RaceEnum race;
private bool isMale;

View File

@@ -2,7 +2,7 @@
namespace Client.Domain.ValueObjects
{
public class Transform : NotifyPropertyChanged
public class Transform : ObservableObject
{
private Vector3 position;
private Vector3 rotation;

View File

@@ -3,7 +3,7 @@ using System;
namespace Client.Domain.ValueObjects
{
public class Vector3 : NotifyPropertyChanged
public class Vector3 : ObservableObject
{
private float x;
private float y;

View File

@@ -2,7 +2,7 @@
namespace Client.Domain.ValueObjects
{
public class VitalStats : NotifyPropertyChanged
public class VitalStats : ObservableObject
{
private uint hp;
private uint maxHp;