Adjusted GUIMux appearance to other gates
[Mograsim.git] / LogicUI / src / era / mi / components / gui / BasicGUIComponent.java
1 package era.mi.components.gui;
2
3 import era.mi.logic.wires.WireArray;
4 import net.haspamelodica.swt.helper.gcs.GeneralGC;
5 import net.haspamelodica.swt.helper.swtobjectwrappers.Point;
6
7 public interface BasicGUIComponent
8 {
9         public void render(GeneralGC gc);
10
11         public int getConnectedWireArraysCount();
12         public WireArray getConnectedWireArray(int connectionIndex);
13         public Point getWireArrayConnectionPoint(int connectionIndex);
14 }