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 = ""; }
public SpeccySprite(int Width, int Height, SpeccyFont Font) { pos.W = Width; pos.H = Height; this.Font = Font; }