public static void DrawHealthBar(SpriteBatch sb, float x, float y, int hp, int max_hp, Color color, float scale = 1f) { HudHealthBarHelpers.DrawHealthBar(sb, x, y, hp, max_hp, color, scale); }
public static Vector2 MeasureHealthText(string text) { return(HudHealthBarHelpers.MeasureHealthText(text)); }
public static void DrawHealthText(SpriteBatch sb, float x, float y, int hp, Color color) { HudHealthBarHelpers.DrawHealthText(sb, x, y, hp, color); }
public static Color GetHealthBarColor(int hp, int max_hp, float alpha) { return(HudHealthBarHelpers.GetHealthBarColor(hp, max_hp, alpha)); }