feat(items): FurnidataEntry record

This commit is contained in:
simoleo89
2026-06-04 20:46:52 +02:00
parent f9644d83b7
commit 964f388594
@@ -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) {
}