Stub for SavedInventory
This commit is contained in:
parent
798946b386
commit
1f88f6ea0d
|
|
@ -0,0 +1,4 @@
|
|||
package com.alttd.essentia.feature.savedinventory;
|
||||
|
||||
public class SavedInventoryFeature {
|
||||
}
|
||||
|
|
@ -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
|
||||
|
||||
|
||||
}
|
||||
|
|
@ -1,4 +0,0 @@
|
|||
package com.alttd.essentia.model;
|
||||
|
||||
public record PlayerInventory() {
|
||||
}
|
||||
|
|
@ -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) { }
|
||||
Loading…
Reference in New Issue
Block a user