/// <summary>
 /// Creates a new Current log Feedback and the text to be shown
 /// </summary>
 /// <param name="text"></param>
 public LogFeedback(InterfaceSpriteName? icon,Color colour,string text)
 {
     this.Icon = icon;
     this.DrawColour = colour;
     this.Text = text;
 }
Beispiel #2
0
 public static SpriteData GetSprite(InterfaceSpriteName name)
 {
     return interfaceSprites[(int)name];
 }