From 964f3885947516136debe1b3a7eb49336e24ccbb Mon Sep 17 00:00:00 2001 From: simoleo89 Date: Thu, 4 Jun 2026 20:46:52 +0200 Subject: [PATCH] feat(items): FurnidataEntry record --- .../com/eu/habbo/habbohotel/items/FurnidataEntry.java | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 Emulator/src/main/java/com/eu/habbo/habbohotel/items/FurnidataEntry.java diff --git a/Emulator/src/main/java/com/eu/habbo/habbohotel/items/FurnidataEntry.java b/Emulator/src/main/java/com/eu/habbo/habbohotel/items/FurnidataEntry.java new file mode 100644 index 00000000..bd273872 --- /dev/null +++ b/Emulator/src/main/java/com/eu/habbo/habbohotel/items/FurnidataEntry.java @@ -0,0 +1,8 @@ +package com.eu.habbo.habbohotel.items; + +/** + * One parsed furnidata entry. {@code classname} is the raw furnidata classname + * (may carry a {@code *N} colour-variant suffix); the provider keys on the base. + */ +public record FurnidataEntry(int id, String classname, FurnitureType type, String name, String description) { +}