Example #1
0
 public SpeccyLabel(int Width, SpeccyColor ForegroundColor, SpeccyColor BackgroundColor, SpeccyFont Font) : base(Width, 1, Font)
 {
     this.ForeColor       = ForegroundColor;
     this.BackColor       = BackgroundColor;
     this.TranspatentChar = '\0';
     this.Text            = "";
 }
Example #2
0
 public SpeccySprite(int Width, int Height, SpeccyFont Font)
 {
     pos.W     = Width;
     pos.H     = Height;
     this.Font = Font;
 }