ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/api/lens/ILensItem.java

13 lines
240 B
Java
Raw Normal View History

2016-01-05 04:47:35 +01:00
package de.ellpeck.actuallyadditions.api.lens;
/**
* This is the base class for a Reconstructor Lens Item
*/
2019-05-02 09:10:29 +02:00
public interface ILensItem {
2016-01-05 04:47:35 +01:00
/**
* Returns the lens type that belongs to this lens item
*/
Lens getLens();
}