Started restructuring LogicUI
[Mograsim.git] / LogicUI / src / era / mi / gui / model / components / GUIAndGate.java
1 package era.mi.gui.model.components;
2
3 import era.mi.gui.model.ViewModel;
4
5 public class GUIAndGate extends RectangularShapedGUIGate
6 {
7         public GUIAndGate(ViewModel model)
8         {
9                 super(model, "&", false);
10                 setInputCount(2);
11         }
12 }