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

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

There is a newer version: 0.10.0-4.3.0
Show newest version
package godot.entrygenerator.model

data class RpcAnnotation(
    val rpcMode: RpcMode,
    val sync: Sync,
    val transferMode: TransferMode,
    val transferChannel: Int,
    override val symbolProcessorSource: Any
) : FunctionAnnotation

enum class RpcMode {
    DISABLED,
    ANY,
    AUTHORITY
}

enum class Sync {
    SYNC,
    NO_SYNC
}

enum class TransferMode {
    RELIABLE,
    UNRELIABLE,
    UNRELIABLE_ORDERED
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy