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

jalse.entities.annotations.KillEntity Maven / Gradle / Ivy

There is a newer version: 1.1.0
Show newest version
package jalse.entities.annotations;

import jalse.entities.Entity;
import jalse.entities.EntityContainer;
import jalse.entities.functions.KillEntityFunction;
import jalse.entities.methods.KillEntityMethod;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import java.util.UUID;

/**
 * An {@link Entity} type annotation for {@link EntityContainer#killEntity(UUID)}.
*
* See {@link KillEntityFunction} for acceptable method signatures. * * @author Elliot Ford * * @see KillEntityMethod * */ @Target(ElementType.METHOD) @Retention(RetentionPolicy.RUNTIME) public @interface KillEntity {}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy