Skip to content
Snippets Groups Projects
Commit faf6baac authored by Sven Gerlach's avatar Sven Gerlach
Browse files

Functional Buttons (Removed Test Code)

parent bc2e9ba8
No related branches found
No related tags found
No related merge requests found
...@@ -19,41 +19,6 @@ public void setNote() { ...@@ -19,41 +19,6 @@ public void setNote() {
dialogueBox.setTransitions(currentNote.Transitions); dialogueBox.setTransitions(currentNote.Transitions);
} }
//Test
public void Start() {
Transition[] GHI = new Transition[2];
Note TestNote = new Note("Actor 3","Testing Text 3",GHI);
Transition TestingTransition = new Transition("Continue", TestNote);
Transition[] ABC = new Transition[1];
ABC[0] = TestingTransition;
Note TestNote2 = new Note("Actor 2","Testing Text 2", ABC);
Transition TestingTransition1 = new Transition("Yes", TestNote2);
Transition[] DEF = new Transition[1];
DEF[0] = TestingTransition1;
Note TestNote3 = new Note("Actor 1","Testing Text 1", DEF);
Transition TestingTransition2 = new Transition("No", TestNote3);
GHI[0] = TestingTransition1;
Transition[] JKL = new Transition[5];
JKL[0] = TestingTransition1;
JKL[1] = TestingTransition2;
JKL[3] = TestingTransition;
JKL[4] = TestingTransition1;
Note TestNote4 = new Note("Actor 4", "Testing Text 4", JKL);
Transition TestingTransition3 = new Transition("Unsure", TestNote4);
GHI[1] = TestingTransition3;
JKL[2] = TestingTransition3;
currentNote = TestNote3;
setNote();
}
public class Note { public class Note {
public string ActorName; public string ActorName;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment