NewPipe/app/src/main/java/org/schabi/newpipe/playlist/events/ReorderEvent.java

13 lines
239 B
Java

package org.schabi.newpipe.playlist.events;
public class ReorderEvent implements PlayQueueEvent {
@Override
public PlayQueueEventType type() {
return PlayQueueEventType.REORDER;
}
public ReorderEvent() {
}
}