Convert newpipe/player/PlayerType to kotlin

This commit is contained in:
Yevhen Babiichuk (DustDFG) 2026-01-01 15:23:21 +02:00
parent ab3314eb1c
commit d9682f5e0a
2 changed files with 12 additions and 7 deletions

View File

@ -1,7 +0,0 @@
package org.schabi.newpipe.player;
public enum PlayerType {
MAIN,
AUDIO,
POPUP;
}

View File

@ -0,0 +1,12 @@
/*
* SPDX-FileCopyrightText: 2022-2026 NewPipe contributors <https://newpipe.net>
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package org.schabi.newpipe.player
enum class PlayerType {
MAIN,
AUDIO,
POPUP
}