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

cn.nukkit.api.NewRakNetOnly Maven / Gradle / Ivy

Go to download

A Minecraft Bedrock Edition server software implementation made in Java from scratch which supports all new features.

There is a newer version: 1.6.0.1-PN
Show newest version
package cn.nukkit.api;

import java.lang.annotation.*;

/**
 * Indicates that the annotated element is only available in PowerNukkit 
 * or in Cloudburst Nukkit environment with the "new-raknet" branch merged  
 * and will cause issues when used in a normal Nukkit server without the "new-raknet" patches and features.
 * 
 * @author joserobjr
 */
@PowerNukkitOnly
@Since("1.4.0.0-PN")
@Retention(RetentionPolicy.CLASS)
@Target({ElementType.CONSTRUCTOR, ElementType.METHOD, ElementType.ANNOTATION_TYPE, ElementType.TYPE,
        ElementType.FIELD, ElementType.PACKAGE})
@Inherited
@Documented
public @interface NewRakNetOnly {
    String value() default "";
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy