NamedEntityKind is a base Java interface in Remixed Dungeon used as a common contract for identifying and naming game entities. It is defined in `com.nyrds.pixeldungeon.mechanics`.
package com.nyrds.pixeldungeon.mechanics; public interface NamedEntityKind { String getEntityKind(); //this one for machines String name(); //this one for humans }