Table of Contents

Named Entity Kind

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`.

Interface Definition

package com.nyrds.pixeldungeon.mechanics;
 
public interface NamedEntityKind {
    String getEntityKind(); //this one for machines
    String name(); //this one for humans
}

Methods

Source Code

See Also