mirror of
https://github.com/lukasabbe/bookshelf-inspector.git
synced 2026-04-30 10:40:53 +00:00
11 lines
287 B
Java
11 lines
287 B
Java
package me.lukasabbe.bookshelfinspector.data;
|
|
|
|
import net.minecraft.util.math.BlockPos;
|
|
|
|
public class BookShelfData {
|
|
public boolean isCurrentBookDataToggled = false;
|
|
public BlockPos latestPos = null;
|
|
public boolean requestSent = false;
|
|
public int currentSlotInt = -1;
|
|
}
|