Esempio n. 1
0
 public TitleComponent(string text, string fontAsset, Color titleColor, Vector2 titleVector)
 {
     title = new TitleType(text, fontAsset, titleColor, titleVector);
 }
Esempio n. 2
0
 public TitleComponent(string text, string fontAsset, Color titleColor, Vector2 titleVector, TextAlignment alignment)
 {
     title = new TitleType(text, fontAsset, titleColor, titleVector, alignment);
 }
Esempio n. 3
0
 public TitleComponent(TitleType componentTitle)
 {
     title = componentTitle;
 }