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) { +}