public static void Draw_Stat(StatsArea area, int statIndex, string statName, DrawComplexValue drawMethod, int value1, int value2) { Draw_StatDescr(area, statIndex, statName); drawMethod(area.ValueLeft, area.Top+statIndex, value1, value2); }
public static void Draw_Stat(StatsArea area, int statIndex, string statName, DrawComplexValue drawMethod, int value1, int value2, bool isTwoDigitPad = false) { Draw_StatDescr(area, statIndex, statName); drawMethod(area.ValueLeft, area.Top+statIndex, value1, value2, isTwoDigitPad); }