Simplified file representation of SubmodelComponents
[Mograsim.git] / net.mograsim.logic.ui / src / net / mograsim / logic / ui / model / components / params / GeneralComponentParams.java
index cf82db4..5d5bc11 100644 (file)
@@ -1,11 +1,18 @@
 package net.mograsim.logic.ui.model.components.params;
 
-import net.mograsim.logic.ui.model.components.params.RectComponentParams.InnerComponentParams;
-import net.mograsim.logic.ui.model.components.params.RectComponentParams.InnerWireParams;
+import net.haspamelodica.swt.helper.swtobjectwrappers.Point;
+import net.mograsim.logic.ui.model.components.params.SubComponentParams.InnerWireParams;
 
 public class GeneralComponentParams
 {
        public double innerScale;
        public InnerComponentParams[] subComps;
        public InnerWireParams[] innerWires;
+
+       public static class InnerComponentParams
+       {
+               public Point pos;
+               public String type;
+               public int logicWidth;
+       }
 }