ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/api/internal/IAtomicReconstructor.java

18 lines
402 B
Java
Raw Normal View History

2016-01-05 14:57:50 +01:00
package de.ellpeck.actuallyadditions.api.internal;
2016-01-05 04:47:35 +01:00
import de.ellpeck.actuallyadditions.api.lens.Lens;
import net.minecraft.util.Direction;
2016-01-05 04:47:35 +01:00
/**
* This is a helper interface for Lens' invoke() method.
2016-01-05 14:57:50 +01:00
* <p>
* This is not supposed to be implemented.
2016-01-05 14:57:50 +01:00
* Can be cast to TileEntity.
2016-01-05 04:47:35 +01:00
*/
2019-05-02 09:10:29 +02:00
public interface IAtomicReconstructor extends IEnergyTile {
Lens getLens();
Direction getOrientation();
2016-01-05 04:47:35 +01:00
}