mirror of
https://github.com/GayPizzaSpecifications/pork.git
synced 2025-08-17 11:51:31 +00:00
14 lines
606 B
Kotlin
14 lines
606 B
Kotlin
package gay.pizza.pork.buildext.codegen
|
|
|
|
class KotlinEnum(
|
|
override val pkg: String,
|
|
override val name: String,
|
|
override var imports: MutableList<String> = mutableListOf(),
|
|
override var annotations: MutableList<String> = mutableListOf(),
|
|
override var typeParameters: MutableList<String> = mutableListOf(),
|
|
override var inherits: MutableList<String> = mutableListOf(),
|
|
override var members: MutableList<KotlinMember> = mutableListOf(),
|
|
override var functions: MutableList<KotlinFunction> = mutableListOf(),
|
|
var entries: MutableList<KotlinEnumEntry> = mutableListOf()
|
|
) : KotlinClassLike()
|