forked from chipmunkmc/chipmunkbot
Remove requiredNotes
This commit is contained in:
parent
6a5947727c
commit
56ae0d364a
1 changed files with 0 additions and 2 deletions
|
@ -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 () {
|
||||
|
|
Loading…
Reference in a new issue