Exemplo n.º 1
0
 public HealthAttribute Init()
 {
     speed  = HealthSpeed.Medium;
     UIdone = false;
     target = value;
     return(this);
 }
Exemplo n.º 2
0
 public void Set(float value, HealthSpeed speed)
 {
     if (value >= max)
     {
         target = max;
     }
     else
     {
         target = value;
     }
 }