Add some todo's

This commit is contained in:
Mrbysco 2024-05-25 17:01:33 +02:00
parent 762679921e
commit 764ded5855
4 changed files with 4 additions and 0 deletions

View file

@ -14,6 +14,7 @@ import net.minecraft.world.item.ItemStack;
import net.neoforged.api.distmarker.Dist;
import net.neoforged.api.distmarker.OnlyIn;
//TODO: We're using Patchouli API for the new booklets. Do we still need this?
public interface IBookletChapter {
IBookletPage[] getAllPages();

View file

@ -15,6 +15,7 @@ import net.neoforged.api.distmarker.OnlyIn;
import java.util.List;
//TODO: We're using Patchouli API for the new booklets. Do we still need this?
public interface IBookletEntry {
List<IBookletChapter> getAllChapters();

View file

@ -19,6 +19,7 @@ import net.neoforged.neoforge.fluids.FluidStack;
import java.util.List;
//TODO: We're using Patchouli API for the new booklets. Do we still need this?
public interface IBookletPage {
void getItemStacksForPage(List<ItemStack> list);

View file

@ -17,6 +17,7 @@ import net.minecraft.world.item.ItemStack;
import java.util.List;
//TODO: We're using Patchouli API for the new booklets. Do we still need this?
public abstract class GuiBookletBase extends Screen {
protected GuiBookletBase(Component titleIn) {