ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/api/lens/ILensItem.java
2020-09-07 15:29:31 +01:00

13 lines
240 B
Java

package de.ellpeck.actuallyadditions.api.lens;
/**
* This is the base class for a Reconstructor Lens Item
*/
public interface ILensItem {
/**
* Returns the lens type that belongs to this lens item
*/
Lens getLens();
}