Remove requiredNotes

This commit is contained in:
Chipmunk 2023-02-21 17:48:24 -05:00
parent 6a5947727c
commit 56ae0d364a

View file

@ -8,7 +8,6 @@ public class Song {
public ArrayList<Note> notes = new ArrayList<>();
public Component name;
public int position = 0; // Current note index
public boolean[] requiredNotes = new boolean[400];
public boolean looping = false;
public boolean paused = true;
public long startTime = 0; // Start time in millis since unix epoch
@ -32,7 +31,6 @@ public class Song {
public void add (Note e) {
notes.add(e);
requiredNotes[e.noteId()] = true;
}
public void sort () {