diff options
| author | Foghrye4 <foghrye4@gmail.com> | 2016-04-11 19:44:54 +0300 |
|---|---|---|
| committer | Foghrye4 <foghrye4@gmail.com> | 2016-04-11 19:44:54 +0300 |
| commit | 05c78126859231a68e199dc34613689bd0978e2f (patch) | |
| tree | 050bea104a18c72905095d29f31bec2935a27a24 /ihl/interfaces/IDataNode.java | |
Initial commit
Diffstat (limited to 'ihl/interfaces/IDataNode.java')
| -rw-r--r-- | ihl/interfaces/IDataNode.java | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/ihl/interfaces/IDataNode.java b/ihl/interfaces/IDataNode.java new file mode 100644 index 0000000..d13af00 --- /dev/null +++ b/ihl/interfaces/IDataNode.java @@ -0,0 +1,21 @@ +package ihl.interfaces;
+
+import ihl.processing.invslots.InvSlotSignalProcessor;
+
+import java.util.Set;
+
+public interface IDataNode
+{
+ int getAttachedSlotNumber();
+ int getDataGridID();
+ void setDataGrid(int newGridID);
+ Set<IDataNode> getConnectedDataNodes();
+ int getXPos();
+ int getYPos();
+ int getZPos();
+ int getInnerId();
+ boolean isIndirectlyConnectedWithContact(int id);
+ void checkAttachedSlots();
+ InvSlotSignalProcessor getAttachedSlot();
+ int getType();
+}
|
