440881df6e321e9a99f4bdaf663674c47c100d35
[Mograsim.git] / LogicUI / src / net / mograsim / logic / ui / model / components / GUIAndGate.java
1 package net.mograsim.logic.ui.model.components;
2
3 import net.mograsim.logic.ui.model.ViewModel;
4
5 public class GUIAndGate extends SimpleRectangularGUIGate
6 {
7         public GUIAndGate(ViewModel model, int logicWidth)
8         {
9                 super(model, logicWidth, "&", false);
10                 setInputCount(2);// TODO make variable
11         }
12 }