From c8582ce2a2fd420d74195219080dacba17fa2eb9 Mon Sep 17 00:00:00 2001 From: Gandalf Date: Wed, 4 Mar 2026 17:39:19 +0100 Subject: [PATCH] comment the Question list --- src/constants.js | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/constants.js b/src/constants.js index cf52bef..0913d97 100644 --- a/src/constants.js +++ b/src/constants.js @@ -12,6 +12,18 @@ const latency = 6000; const initial_latency = 30000; const questions = [ + //Every question consists of at least: + // -two strings that will be combined to string1+their_name+string2. + // string2 can be empty, needs to be defined anyways. + // -the tab (see above) the Question belongs to + //Optionally can be added: + // -a number that indicates which other question this one corresponds to, + // so that a pair of questions describes the same activity from two + // different angles. This is a relative distance in this list, + // with e.g. 1 meaning "next question" and -1 meaning "previous question" + // If none is given, it defaults to 0. + // -another tab: If both partners consent to this question, this tab will be unlocked + // for further "gameplay". new Question("Sind zufällige Berührungen von "," ok?",Tabs.cuddles), new Question("Sind beiläufige, absichtliche Berührungen von "," ok?",Tabs.cuddles), new Question("Willst du mit "," kuscheln?",Tabs.cuddles),