PlayableCharacter

constructor(identifier: String, description: String, canConverse: Boolean = true, items: List<Item> = emptyList())

A playable character with the specified identifier and description and items. If the playable character can converse with a Converser should be set to true, else false.


constructor(identifier: Identifier, description: Description, canConverse: Boolean = true, items: List<Item> = emptyList())