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