aboutsummaryrefslogtreecommitdiff
path: root/src/fallTest/LaneInfo.java
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/fallTest/LaneInfo.java28
1 files changed, 0 insertions, 28 deletions
diff --git a/src/fallTest/LaneInfo.java b/src/fallTest/LaneInfo.java
deleted file mode 100644
index 7fe5567..0000000
--- a/src/fallTest/LaneInfo.java
+++ /dev/null
@@ -1,28 +0,0 @@
-package fallTest;
-
-import java.util.ArrayList;
-import java.util.LinkedList;
-import java.util.Queue;
-
-import javax.swing.JButton;
-
-public class LaneInfo {
- //test
- Queue<NoteInfo> sends = new LinkedList<NoteInfo>(); //Queue that dictates when to send the notes
- ArrayList<Block> nodes = new ArrayList<Block>(); //Array list containing all the notes currently on the field
- public void addSends(int t) {
- sends.add(new NoteInfo(t));
- }
-
- public void addNodes(int t) {
- nodes.add(new Block());
- }
-
- public ArrayList<Block> getNodes() {
- return nodes;
- }
-
- public Queue<NoteInfo> getSends() {
- return sends;
- }
-}