public TitleComponent(string text, string fontAsset, Color titleColor, Vector2 titleVector)
 {
     title = new TitleType(text, fontAsset, titleColor, titleVector);
 }
 public TitleComponent(string text, string fontAsset, Color titleColor, Vector2 titleVector, TextAlignment alignment)
 {
     title = new TitleType(text, fontAsset, titleColor, titleVector, alignment);
 }
 public TitleComponent(TitleType componentTitle)
 {
     title = componentTitle;
 }