38 lines
694 B
Java
38 lines
694 B
Java
package at.technikum.mti.fancycoverflow;
|
|
|
|
/* loaded from: classes.dex */
|
|
public class AutoPlayer {
|
|
|
|
public enum PlayDirection {
|
|
to_left,
|
|
to_right
|
|
}
|
|
|
|
public enum PlayRecycleMode {
|
|
repeat_from_start,
|
|
play_back
|
|
}
|
|
|
|
public interface Playable {
|
|
}
|
|
|
|
public AutoPlayer(Playable playable) {
|
|
PlayDirection playDirection = PlayDirection.to_right;
|
|
PlayRecycleMode playRecycleMode = PlayRecycleMode.repeat_from_start;
|
|
}
|
|
|
|
public AutoPlayer a(int i) {
|
|
return this;
|
|
}
|
|
|
|
public AutoPlayer a(PlayRecycleMode playRecycleMode) {
|
|
return this;
|
|
}
|
|
|
|
public void a() {
|
|
}
|
|
|
|
public void b() {
|
|
}
|
|
}
|