Stub for SavedInventory

This commit is contained in:
Len 2025-11-12 23:18:24 +01:00
parent 798946b386
commit 1f88f6ea0d
4 changed files with 20 additions and 4 deletions

View File

@ -0,0 +1,4 @@
package com.alttd.essentia.feature.savedinventory;
public class SavedInventoryFeature {
}

View File

@ -0,0 +1,8 @@
package com.alttd.essentia.feature.savedinventory.gui;
public class SavedInventoryPreviewGUI {
// preview saved inventory, also acts as the live preview of another player's inventory/ec
}

View File

@ -1,4 +0,0 @@
package com.alttd.essentia.model;
public record PlayerInventory() {
}

View File

@ -0,0 +1,8 @@
package com.alttd.essentia.model;
import org.bukkit.Location;
import org.bukkit.inventory.ItemStack;
import java.util.UUID;
public record SavedInventory(int id, ItemStack[] storageContents, ItemStack[] armorContents, UUID ownerUUID, String saveReason, Location location, long date) { }