All Downloads are FREE. Search and download functionalities are using the official Maven repository.

godot.entrygenerator.model.Range.kt Maven / Gradle / Ivy

There is a newer version: 0.10.0-4.3.0
Show newest version
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)
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy