12 lines
212 B
C#
12 lines
212 B
C#
public class Unit : Entity
|
|
{
|
|
|
|
public int Health { get; set; } = 100;
|
|
public int MaxHealth { get; set; } = 100;
|
|
public int HealthPerSecond { get; set; } = 0.2;
|
|
|
|
public Unit()
|
|
{
|
|
|
|
}
|
|
} |