rle.core.board
Interface CreationContext

All Known Implementing Classes:
CreationContextBase

public interface CreationContext

An interface providing information that will assist in the generation of an entity, such as a Board or Item.


Method Summary
 java.lang.Object getHint(java.lang.String key)
          The value of a particular hint, or null if no such hint is defined.
 java.util.Set<java.lang.String> hintKeySet()
          The keys of any creation "hints".
 int level()
          The level for purposes of monster/item generation.
 

Method Detail

level

int level()
The level for purposes of monster/item generation.


hintKeySet

java.util.Set<java.lang.String> hintKeySet()
The keys of any creation "hints".


getHint

java.lang.Object getHint(java.lang.String key)
The value of a particular hint, or null if no such hint is defined.