15 lines
293 B
Java
15 lines
293 B
Java
/*
|
|
* Decompiled with CFR 0.152.
|
|
*/
|
|
package net.minecraft.world.item.component;
|
|
|
|
import java.util.List;
|
|
import net.minecraft.server.network.Filterable;
|
|
|
|
public interface BookContent<T, C> {
|
|
public List<Filterable<T>> pages();
|
|
|
|
public C withReplacedPages(List<Filterable<T>> var1);
|
|
}
|
|
|