public LabelDisplayEntity(int x, int y, int width, int height, OledFont font, string label)
     : base(x, y, width, height)
 {
     this.font  = font;
     this.value = label;
 }
Beispiel #2
0
 public FloatDisplayEntity(int x, int y, int width, int height, OledFont font, DisplayVariable displayVariable, double maxDecimal)
     : base(x, y, width, height, font, displayVariable)
 {
     this.maxDecimal = maxDecimal;
 }