Exemplo n.º 1
0
 public MenuItemWithAction(Lcd lcd, string text, Func <bool> action, MenuItemSymbole symbole = MenuItemSymbole.None)
 {
     this.text    = text;
     this.action  = action;
     this.lcd     = lcd;
     this.symbole = symbole;
 }
Exemplo n.º 2
0
		public MenuItemWithAction(string text, Func<bool> action, MenuItemSymbole symbole = MenuItemSymbole.None){
			this.text = text;
			this.action = action;
			this.symbole = symbole;
		}