godot.entrygenerator.model.Range.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of godot-entry-generator Show documentation
Show all versions of godot-entry-generator Show documentation
Godot Kotlin entry code generator.
package godot.entrygenerator.model
import com.squareup.kotlinpoet.ClassName
import godot.tools.common.constants.GodotKotlinJvmTypes
import godot.tools.common.constants.godotRegistrationPackage
enum class Range {
NONE,
OR_GREATER,
OR_LESSER;
internal fun asClassName(): ClassName {
return ClassName("$godotRegistrationPackage.${GodotKotlinJvmTypes.Annotations.range}", name)
}
}