9 lines
296 B
GDScript
9 lines
296 B
GDScript
class_name ConversationPresenter
|
|
extends RefCounted
|
|
|
|
|
|
# Presentation consumes a completed semantic plan. It must not select options or
|
|
# mutate simulation state while rendering that plan.
|
|
func present_turn(_turn: ConversationTurn, _presentation_context: Dictionary = {}) -> Variant:
|
|
return null
|