forgot another thing in the API :(

master
BodgeMaster 2022-02-20 19:50:04 +01:00
parent 8f2636a283
commit 9738530b4e
1 changed files with 2 additions and 1 deletions

View File

@ -21,8 +21,9 @@ public class QuizBackend {
* @param question The string for the question text
* @param answers The multiple choice answers
* @param mask A mask to be layed over answers to decide which answers are correct and which arent
* @param scoreValue See getQuestionScoreValue()
*/
public Question(String question, String[] answers, boolean[] mask) {
public Question(String question, String[] answers, boolean[] mask, int scoreValue) {
}