Removed unused import
[Mograsim.git] / LogicUI / src / era / mi / components / gui / BasicGUIComponent.java
index 29df4f6..92ec777 100644 (file)
@@ -1,8 +1,14 @@
 package era.mi.components.gui;
 
+import era.mi.logic.wires.WireArray;
 import net.haspamelodica.swt.helper.gcs.GeneralGC;
+import net.haspamelodica.swt.helper.swtobjectwrappers.Point;
 
 public interface BasicGUIComponent
 {
        public void render(GeneralGC gc);
+
+       public int getConnectedWireArraysCount();
+       public WireArray getConnectedWireArray(int connectionIndex);
+       public Point getWireArrayConnectionPoint(int connectionIndex);
 }
\ No newline at end of file