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