Exemplo n.º 1
0
 public Vital(VitalEnum vitalType, int max)
 {
     this.vitalType = vitalType;
     Max            = max;
     current        = Max;
     Temporary      = 0;
 }
Exemplo n.º 2
0
 public Vital(VitalEnum vitalType, int max, int current, int temporary)
 {
     this.vitalType = vitalType;
     Max            = max;
     this.current   = current;
     Temporary      = temporary;
 }
Exemplo n.º 3
0
 public Vital()
 {
     Max       = current = Temporary = 0;
     vitalType = VitalEnum.None;
 }