ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/booklet/entry/BookletEntryTrials.java
Michael be421af8e2
Big Refactor of the package layout
Ignore this commit for diffs
2020-09-09 15:48:43 +01:00

14 lines
307 B
Java

package de.ellpeck.actuallyadditions.common.booklet.entry;
public class BookletEntryTrials extends BookletEntry {
public BookletEntryTrials(String identifier) {
super(identifier, -Integer.MAX_VALUE);
}
@Override
public boolean visibleOnFrontPage() {
return false;
}
}