commit 28/07/2025

This commit is contained in:
2025-07-28 16:33:41 +07:00
parent d12a089eda
commit 4f0a7a1560
6 changed files with 96 additions and 0 deletions

16
src/content/Language.kt Normal file
View File

@@ -0,0 +1,16 @@
package content
/**
* Enum class representing different languages.
*
* @property name The name of the language, as in Soundbank Database
*/
@Suppress("unused")
enum class Language(name: String) {
Indonesia("INDONESIA"),
English("ENGLISH"),
Local("LOCAL"),
Japanese("JAPANESE"),
Chinese("CHINESE"),
Arabic("ARABIC"),;
}