Package com.csse3200.game.ui
Class DialogComponent
java.lang.Object
com.csse3200.game.components.Component
com.csse3200.game.ui.DialogComponent
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionDialogComponent
(DialogueBox dialogueBox) Creates a new DialogComponent with the given DialogueBox instance. -
Method Summary
Modifier and TypeMethodDescriptionvoid
showdialogue
(String title, String text) Displays a dialog box with the specified title and text.Methods inherited from class com.csse3200.game.components.Component
create, dispose, earlyUpdate, getEntity, setEnabled, setEntity, toString, triggerEarlyUpdate, triggerUpdate, update
-
Field Details
-
stage
public com.badlogic.gdx.scenes.scene2d.Stage stage
-
-
Constructor Details
-
DialogComponent
Creates a new DialogComponent with the given DialogueBox instance.- Parameters:
dialogueBox
- The DialogueBox instance to use for displaying dialog boxes.
-
-
Method Details
-
showdialogue
Displays a dialog box with the specified title and text.- Parameters:
title
- The title of the dialog box.text
- The text content of the dialog box.
-