// In NamedEntityKind.java package com.nyrds.pixeldungeon.mechanics; public interface NamedEntityKind { String getEntityKind(); //this one for machines String name(); //this one for humans }
Interface Definition:
The `NamedEntityKind` interface does not have JSON configuration. It is:
The `NamedEntityKind` interface does not reference string resources directly. The `name()` method is typically implemented in subclasses to return values from string resources via `StringsManager.getVar(R.string.XXX)`.
The `NamedEntityKind` interface is implemented entirely in Java. No Lua scripts use it directly.
Interfaces extending NamedEntityKind:
Entities implementing NamedEntityKind (selected):