File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
src/main/java/net/raphimc/noteblocklib/player Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -30,13 +30,13 @@ public class SongPlayer {
3030 private static final ScheduledExecutorService SCHEDULER = Executors .newSingleThreadScheduledExecutor (new ThreadFactoryBuilder ().setNameFormat ("Song Player" ).setDaemon (true ).build ());
3131
3232 private final SongView <?> songView ;
33- private final ISongPlayerCallback callback ;
33+ private final SongPlayerCallback callback ;
3434
3535 private ScheduledFuture <?> timer ;
3636 private int tick = -1 ;
3737 private boolean paused ;
3838
39- public SongPlayer (final SongView <?> songView , final ISongPlayerCallback callback ) {
39+ public SongPlayer (final SongView <?> songView , final SongPlayerCallback callback ) {
4040 this .songView = songView ;
4141 this .callback = callback ;
4242 }
Original file line number Diff line number Diff line change 1818package net .raphimc .noteblocklib .player ;
1919
2020@ FunctionalInterface
21- public interface ISongPlayerCallback extends NoteConsumer {
21+ public interface SongPlayerCallback extends NoteConsumer {
2222
2323 default void onFinished () {
2424 }
You can’t perform that action at this time.
0 commit comments