1
This commit is contained in:
@@ -53,8 +53,13 @@ namespace BITKit.Entities
|
||||
public int HealthPoint
|
||||
{
|
||||
get => healthPoint;
|
||||
set => OnHealthPointChangedInternal(healthPoint, value);
|
||||
set
|
||||
{
|
||||
if(value == healthPoint)return;
|
||||
OnHealthPointChangedInternal(healthPoint, value);
|
||||
}
|
||||
}
|
||||
|
||||
public int MaxHealthPoint
|
||||
{
|
||||
get => maxHealthPoint;
|
||||
|
Reference in New Issue
Block a user