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