mirror of
https://github.com/XevianLight/Aphelion.git
synced 2026-05-11 01:50:56 +01:00
10 lines
223 B
Java
10 lines
223 B
Java
package net.xevianlight.aphelion.util;
|
|
|
|
import net.minecraft.core.BlockPos;
|
|
import org.jetbrains.annotations.Nullable;
|
|
|
|
public interface IMultiblockController {
|
|
boolean isFormed();
|
|
void setFormed(boolean formed);
|
|
}
|