refactor: remove possible null warning from Skill

This commit is contained in:
k0t9i
2023-02-01 16:45:45 +04:00
parent 1bd107ad0a
commit ec54d22c65

View File

@@ -29,9 +29,9 @@ namespace Client.Domain.Entities
IsActive = isActive; IsActive = isActive;
this.cost = cost; this.cost = cost;
this.range = range; this.range = range;
Name = name; this.name = name;
this.description = description; this.description = description;
IconName = iconName; this.iconName = iconName;
this.isToggled = isToggled; this.isToggled = isToggled;
this.isCasting = isCasting; this.isCasting = isCasting;
this.isReloading = isReloading; this.isReloading = isReloading;