From 31171c13a0d3cb8a760dfb54db6d8e9e65738211 Mon Sep 17 00:00:00 2001 From: andy-tieu Date: Mon, 5 Aug 2024 04:26:19 -0500 Subject: [PATCH] Added comments to explain what needs to be implemented still in the class --- src/main/java/uta/cse3310/Round.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/main/java/uta/cse3310/Round.java b/src/main/java/uta/cse3310/Round.java index 7b3c82c..5756975 100644 --- a/src/main/java/uta/cse3310/Round.java +++ b/src/main/java/uta/cse3310/Round.java @@ -1,6 +1,11 @@ package uta.cse3310; import java.time.LocalDateTime; +// Need to implement functions that choose random words from filtered_words.txt and also +// checks with user guesses (may be implemented here or in Gameplay.java if better choice) + +// Also need to have a way the wheel occurs whenever a valid event happens for it to occur +// example: user guesses a correct character, then they get a wheel spin public class Round {