NewText() 공개 정적인 메소드

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
리턴 int
예제 #1
0
 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));
 }