NewText() public static method

public static NewText ( Rectangle location, Color color, string text, bool dramatic = false, bool dot = false ) : int
location Microsoft.Xna.Framework.Rectangle
color Color
text string
dramatic bool
dot bool
return int
 public static int NewText(Rectangle location, Color color, int amount, bool dramatic = false, bool dot = false)
 {
     return(CombatText.NewText(location, color, amount.ToString(), dramatic, dot));
 }