Add HelloHuman class with say action

This commit is contained in:
SebasKoedam
2024-04-21 16:09:10 +02:00
parent 56875ce2d8
commit bbca6c30ff

View File

@@ -0,0 +1,6 @@
public class HelloHuman {
// Create a new say action.
Say say = SayBuilder.with(qiContext) // Create the builder with the context.
.withText("Hello human!") // Set the text to say.
.build(); // Build the say action.
}