This commit is contained in:
2022-04-29 13:45:12 -07:00
parent 41a23e30ac
commit 87ba6dc281
4 changed files with 55 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
/**
* Copyright (c) 2022 Dominic Masters
*
* This software is released under the MIT License.
* https://opensource.org/licenses/MIT
*/
#include "questionbox.h"
void questionBoxSetOptions(char *title, char *options[QUESTION_BOX_OPTIONS_MAX]) {
char buffer[TEXTBOX_CHARS_MAX + 1];
sprintf(buffer, "Hello World");
conversationTextboxSetText(buffer);
}
inline void questionBoxUpdate() {
}