6 lines
152 B
Java
6 lines
152 B
Java
|
package com.thebrokenrail.energonrelics.structure;
|
||
|
|
||
|
public interface StructureContext {
|
||
|
void addPart(int x, int y, int z, StructurePart<?> part);
|
||
|
}
|