mirror of
https://github.com/Minestom/Minestom.git
synced 2025-01-03 23:17:48 +01:00
Removed @author javadocs
This commit is contained in:
parent
b409eadffa
commit
6eda8f97db
@ -8,9 +8,6 @@ import org.jetbrains.annotations.NotNull;
|
||||
import java.util.Locale;
|
||||
import java.util.function.Consumer;
|
||||
|
||||
/**
|
||||
* Created by k.shandurenko on 23.02.2021
|
||||
*/
|
||||
@SuppressWarnings("rawtypes")
|
||||
public class ArgumentEnum<E extends Enum> extends Argument<E> {
|
||||
|
||||
|
@ -1,8 +1,5 @@
|
||||
package net.minestom.server.entity.type;
|
||||
|
||||
/**
|
||||
* Created by k.shandurenko on 23.02.2021
|
||||
*/
|
||||
public interface Ageable {
|
||||
|
||||
boolean isBaby();
|
||||
|
@ -8,9 +8,6 @@ import net.minestom.server.utils.Position;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
|
||||
/**
|
||||
* Created by k.shandurenko on 23.02.2021
|
||||
*/
|
||||
public class AgeableCreature extends EntityCreature implements Ageable {
|
||||
|
||||
protected AgeableCreature(@NotNull EntityType entityType, @NotNull Position spawnPosition) {
|
||||
|
@ -9,9 +9,6 @@ import org.jetbrains.annotations.Nullable;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* Created by k.shandurenko on 23.02.2021
|
||||
*/
|
||||
public class TameableAnimalCreature extends AgeableCreature implements TameableAnimal {
|
||||
|
||||
private final static byte SITTING_BIT = 0x1;
|
||||
|
@ -8,9 +8,6 @@ import net.minestom.server.utils.Position;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
|
||||
/**
|
||||
* Created by k.shandurenko on 23.02.2021
|
||||
*/
|
||||
public class EntityAbstractVillager extends AgeableCreature {
|
||||
|
||||
EntityAbstractVillager(@NotNull EntityType entityType, @NotNull Position spawnPosition) {
|
||||
|
@ -7,9 +7,6 @@ import net.minestom.server.utils.Position;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
|
||||
/**
|
||||
* Created by k.shandurenko on 23.02.2021
|
||||
*/
|
||||
public class EntityTraderLlama extends EntityCreature {
|
||||
|
||||
public EntityTraderLlama(@NotNull Position spawnPosition) {
|
||||
|
@ -8,9 +8,6 @@ import net.minestom.server.utils.Position;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
|
||||
/**
|
||||
* Created by k.shandurenko on 23.02.2021
|
||||
*/
|
||||
public class EntityVillager extends EntityAbstractVillager {
|
||||
|
||||
public EntityVillager(@NotNull Position spawnPosition) {
|
||||
|
@ -6,9 +6,6 @@ import net.minestom.server.utils.Position;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
|
||||
/**
|
||||
* Created by k.shandurenko on 23.02.2021
|
||||
*/
|
||||
public class EntityWanderingTrader extends EntityAbstractVillager {
|
||||
|
||||
public EntityWanderingTrader(@NotNull Position spawnPosition) {
|
||||
|
@ -11,9 +11,6 @@ import org.jetbrains.annotations.Nullable;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* Created by k.shandurenko on 23.02.2021
|
||||
*/
|
||||
public class EntityAbstractHorse extends AgeableCreature implements Animal {
|
||||
|
||||
private final static byte TAMED_BIT = 0x02;
|
||||
|
@ -7,9 +7,6 @@ import net.minestom.server.utils.Position;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
|
||||
/**
|
||||
* Created by k.shandurenko on 23.02.2021
|
||||
*/
|
||||
public class EntityChestedHorse extends EntityAbstractHorse {
|
||||
|
||||
EntityChestedHorse(@NotNull EntityType entityType, @NotNull Position spawnPosition) {
|
||||
|
@ -6,9 +6,6 @@ import net.minestom.server.utils.Position;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
|
||||
/**
|
||||
* Created by k.shandurenko on 23.02.2021
|
||||
*/
|
||||
public class EntityDonkey extends EntityChestedHorse {
|
||||
|
||||
public EntityDonkey(@NotNull Position spawnPosition) {
|
||||
|
@ -9,9 +9,6 @@ import net.minestom.server.utils.Position;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
|
||||
/**
|
||||
* Created by k.shandurenko on 23.02.2021
|
||||
*/
|
||||
public class EntityHoglin extends AgeableCreature implements Animal {
|
||||
|
||||
public EntityHoglin(@NotNull Position spawnPosition) {
|
||||
|
@ -7,9 +7,6 @@ import net.minestom.server.utils.Position;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
|
||||
/**
|
||||
* Created by k.shandurenko on 23.02.2021
|
||||
*/
|
||||
public class EntityHorse extends EntityAbstractHorse {
|
||||
|
||||
public EntityHorse(@NotNull Position spawnPosition) {
|
||||
|
@ -7,9 +7,6 @@ import net.minestom.server.utils.Position;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
|
||||
/**
|
||||
* Created by k.shandurenko on 23.02.2021
|
||||
*/
|
||||
public class EntityLlama extends EntityChestedHorse {
|
||||
|
||||
public EntityLlama(@NotNull Position spawnPosition) {
|
||||
|
@ -6,9 +6,6 @@ import net.minestom.server.utils.Position;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
|
||||
/**
|
||||
* Created by k.shandurenko on 23.02.2021
|
||||
*/
|
||||
public class EntityMule extends EntityChestedHorse {
|
||||
|
||||
public EntityMule(@NotNull Position spawnPosition) {
|
||||
|
@ -8,9 +8,6 @@ import net.minestom.server.utils.Position;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
|
||||
/**
|
||||
* Created by k.shandurenko on 23.02.2021
|
||||
*/
|
||||
public class EntityParrot extends TameableAnimalCreature {
|
||||
|
||||
public EntityParrot(@NotNull Position spawnPosition) {
|
||||
|
@ -9,9 +9,6 @@ import net.minestom.server.utils.Position;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
|
||||
/**
|
||||
* Created by k.shandurenko on 23.02.2021
|
||||
*/
|
||||
public class EntitySheep extends AgeableCreature implements Animal {
|
||||
|
||||
public EntitySheep(@NotNull Position spawnPosition) {
|
||||
|
@ -6,9 +6,6 @@ import net.minestom.server.utils.Position;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
|
||||
/**
|
||||
* Created by k.shandurenko on 23.02.2021
|
||||
*/
|
||||
public class EntitySkeletonHorse extends EntityAbstractHorse {
|
||||
|
||||
public EntitySkeletonHorse(@NotNull Position spawnPosition) {
|
||||
|
@ -9,9 +9,6 @@ import net.minestom.server.utils.Position;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
|
||||
/**
|
||||
* Created by k.shandurenko on 23.02.2021
|
||||
*/
|
||||
public class EntityStrider extends AgeableCreature implements Animal {
|
||||
|
||||
public EntityStrider(@NotNull Position spawnPosition) {
|
||||
|
@ -8,9 +8,6 @@ import net.minestom.server.utils.Position;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
|
||||
/**
|
||||
* Created by k.shandurenko on 23.02.2021
|
||||
*/
|
||||
public class EntityWolf extends TameableAnimalCreature {
|
||||
|
||||
public EntityWolf(@NotNull Position spawnPosition) {
|
||||
|
@ -7,9 +7,6 @@ import net.minestom.server.utils.Position;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
|
||||
/**
|
||||
* Created by k.shandurenko on 23.02.2021
|
||||
*/
|
||||
public class EntityZombieHorse extends EntityAbstractHorse {
|
||||
|
||||
public EntityZombieHorse(@NotNull Position spawnPosition) {
|
||||
|
@ -9,9 +9,6 @@ import net.minestom.server.utils.Position;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
|
||||
/**
|
||||
* Created by k.shandurenko on 23.02.2021
|
||||
*/
|
||||
public class EntityBasePiglin extends EntityCreature implements Monster {
|
||||
|
||||
EntityBasePiglin(@NotNull EntityType entityType, @NotNull Position spawnPosition) {
|
||||
|
@ -4,9 +4,6 @@ import net.minestom.server.entity.EntityType;
|
||||
import net.minestom.server.utils.Position;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
|
||||
/**
|
||||
* Created by k.shandurenko on 23.02.2021
|
||||
*/
|
||||
public class EntityDrowned extends EntityZombie {
|
||||
|
||||
public EntityDrowned(@NotNull Position spawnPosition) {
|
||||
|
@ -6,9 +6,6 @@ import net.minestom.server.utils.Position;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
|
||||
/**
|
||||
* Created by k.shandurenko on 23.02.2021
|
||||
*/
|
||||
public class EntityElderGuardian extends EntityGuardian {
|
||||
|
||||
public EntityElderGuardian(@NotNull Position spawnPosition) {
|
||||
|
@ -9,9 +9,6 @@ import net.minestom.server.utils.Position;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
|
||||
/**
|
||||
* Created by k.shandurenko on 23.02.2021
|
||||
*/
|
||||
public class EntityEnderman extends EntityCreature implements Monster {
|
||||
|
||||
public EntityEnderman(@NotNull Position spawnPosition) {
|
||||
|
@ -6,9 +6,6 @@ import net.minestom.server.utils.Position;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
|
||||
/**
|
||||
* Created by k.shandurenko on 23.02.2021
|
||||
*/
|
||||
public class EntityEvoker extends EntitySpellcasterIllager {
|
||||
|
||||
public EntityEvoker(@NotNull Position spawnPosition) {
|
||||
|
@ -4,9 +4,6 @@ import net.minestom.server.entity.EntityType;
|
||||
import net.minestom.server.utils.Position;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
|
||||
/**
|
||||
* Created by k.shandurenko on 23.02.2021
|
||||
*/
|
||||
public class EntityHusk extends EntityZombie {
|
||||
|
||||
public EntityHusk(@NotNull Position spawnPosition) {
|
||||
|
@ -6,9 +6,6 @@ import net.minestom.server.utils.Position;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
|
||||
/**
|
||||
* Created by k.shandurenko on 23.02.2021
|
||||
*/
|
||||
public class EntityIllusioner extends EntitySpellcasterIllager {
|
||||
|
||||
public EntityIllusioner(@NotNull Position spawnPosition) {
|
||||
|
@ -4,9 +4,6 @@ import net.minestom.server.entity.EntityType;
|
||||
import net.minestom.server.utils.Position;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
|
||||
/**
|
||||
* Created by k.shandurenko on 23.02.2021
|
||||
*/
|
||||
public class EntityMagmaCube extends EntitySlime {
|
||||
|
||||
public EntityMagmaCube(@NotNull Position spawnPosition) {
|
||||
|
@ -7,9 +7,6 @@ import net.minestom.server.utils.Position;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
|
||||
/**
|
||||
* Created by k.shandurenko on 23.02.2021
|
||||
*/
|
||||
public class EntityPiglin extends EntityBasePiglin {
|
||||
|
||||
public EntityPiglin(@NotNull Position spawnPosition) {
|
||||
|
@ -6,9 +6,6 @@ import net.minestom.server.utils.Position;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
|
||||
/**
|
||||
* Created by k.shandurenko on 23.02.2021
|
||||
*/
|
||||
public class EntityPiglinBrute extends EntityBasePiglin {
|
||||
|
||||
public EntityPiglinBrute(@NotNull Position spawnPosition) {
|
||||
|
@ -6,9 +6,6 @@ import net.minestom.server.utils.Position;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
|
||||
/**
|
||||
* Created by k.shandurenko on 23.02.2021
|
||||
*/
|
||||
public class EntityPillager extends EntityRaider {
|
||||
|
||||
public EntityPillager(@NotNull Position spawnPosition) {
|
||||
|
@ -9,9 +9,6 @@ import net.minestom.server.utils.Position;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
|
||||
/**
|
||||
* Created by k.shandurenko on 23.02.2021
|
||||
*/
|
||||
public class EntityRaider extends EntityCreature implements Monster {
|
||||
|
||||
protected EntityRaider(@NotNull EntityType entityType, @NotNull Position spawnPosition) {
|
||||
|
@ -6,9 +6,6 @@ import net.minestom.server.utils.Position;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
|
||||
/**
|
||||
* Created by k.shandurenko on 23.02.2021
|
||||
*/
|
||||
public class EntityRavager extends EntityRaider {
|
||||
|
||||
public EntityRavager(@NotNull Position spawnPosition) {
|
||||
|
@ -8,9 +8,6 @@ import net.minestom.server.utils.Position;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
|
||||
/**
|
||||
* Created by k.shandurenko on 23.02.2021
|
||||
*/
|
||||
public class EntitySkeleton extends EntityCreature implements Monster {
|
||||
|
||||
public EntitySkeleton(@NotNull Position spawnPosition) {
|
||||
|
@ -7,9 +7,6 @@ import net.minestom.server.utils.Position;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
|
||||
/**
|
||||
* Created by k.shandurenko on 23.02.2021
|
||||
*/
|
||||
public class EntitySpellcasterIllager extends EntityRaider {
|
||||
|
||||
protected EntitySpellcasterIllager(@NotNull EntityType entityType, @NotNull Position spawnPosition) {
|
||||
|
@ -6,9 +6,6 @@ import net.minestom.server.utils.Position;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
|
||||
/**
|
||||
* Created by k.shandurenko on 23.02.2021
|
||||
*/
|
||||
public class EntityStray extends EntitySkeleton {
|
||||
|
||||
public EntityStray(@NotNull Position spawnPosition) {
|
||||
|
@ -9,9 +9,6 @@ import net.minestom.server.utils.Position;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
|
||||
/**
|
||||
* Created by k.shandurenko on 23.02.2021
|
||||
*/
|
||||
public class EntityVex extends EntityCreature implements Monster {
|
||||
|
||||
private final static byte ATTACKING_BIT = 0x1;
|
||||
|
@ -6,9 +6,6 @@ import net.minestom.server.utils.Position;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
|
||||
/**
|
||||
* Created by k.shandurenko on 23.02.2021
|
||||
*/
|
||||
public class EntityVindicator extends EntityRaider {
|
||||
|
||||
public EntityVindicator(@NotNull Position spawnPosition) {
|
||||
|
@ -6,9 +6,6 @@ import net.minestom.server.utils.Position;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
|
||||
/**
|
||||
* Created by k.shandurenko on 23.02.2021
|
||||
*/
|
||||
public class EntityWitherSkeleton extends EntitySkeleton {
|
||||
|
||||
public EntityWitherSkeleton(@NotNull Position spawnPosition) {
|
||||
|
@ -8,9 +8,6 @@ import net.minestom.server.utils.Position;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
|
||||
/**
|
||||
* Created by k.shandurenko on 23.02.2021
|
||||
*/
|
||||
public class EntityZoglin extends AgeableCreature implements Monster {
|
||||
|
||||
public EntityZoglin(@NotNull Position spawnPosition) {
|
||||
|
@ -7,9 +7,6 @@ import net.minestom.server.entity.type.ambient.EntityVillager;
|
||||
import net.minestom.server.utils.Position;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
|
||||
/**
|
||||
* Created by k.shandurenko on 23.02.2021
|
||||
*/
|
||||
public class EntityZombieVillager extends EntityZombie {
|
||||
|
||||
public EntityZombieVillager(@NotNull Position spawnPosition) {
|
||||
|
@ -4,9 +4,6 @@ import net.minestom.server.entity.EntityType;
|
||||
import net.minestom.server.utils.Position;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
|
||||
/**
|
||||
* Created by k.shandurenko on 23.02.2021
|
||||
*/
|
||||
public class EntityZombifiedPiglin extends EntityZombie {
|
||||
|
||||
public EntityZombifiedPiglin(@NotNull Position spawnPosition) {
|
||||
|
@ -8,9 +8,6 @@ import net.minestom.server.utils.Position;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
|
||||
/**
|
||||
* Created by k.shandurenko on 23.02.2021
|
||||
*/
|
||||
public class EntityAbstractFish extends EntityCreature {
|
||||
|
||||
protected EntityAbstractFish(@NotNull EntityType entityType, @NotNull Position spawnPosition) {
|
||||
|
@ -6,9 +6,6 @@ import net.minestom.server.utils.Position;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
|
||||
/**
|
||||
* Created by k.shandurenko on 23.02.2021
|
||||
*/
|
||||
public class EntityCod extends EntityAbstractFish {
|
||||
|
||||
public EntityCod(@NotNull Position spawnPosition) {
|
||||
|
@ -7,9 +7,6 @@ import net.minestom.server.utils.Position;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
|
||||
/**
|
||||
* Created by k.shandurenko on 23.02.2021
|
||||
*/
|
||||
public class EntityPufferFish extends EntityAbstractFish {
|
||||
|
||||
public EntityPufferFish(@NotNull Position spawnPosition) {
|
||||
|
@ -6,9 +6,6 @@ import net.minestom.server.utils.Position;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
|
||||
/**
|
||||
* Created by k.shandurenko on 23.02.2021
|
||||
*/
|
||||
public class EntitySalmon extends EntityAbstractFish {
|
||||
|
||||
public EntitySalmon(@NotNull Position spawnPosition) {
|
||||
|
@ -7,9 +7,6 @@ import net.minestom.server.utils.Position;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
|
||||
/**
|
||||
* Created by k.shandurenko on 23.02.2021
|
||||
*/
|
||||
public class EntitySquid extends EntityCreature {
|
||||
|
||||
public EntitySquid(@NotNull Position spawnPosition) {
|
||||
|
@ -7,9 +7,6 @@ import net.minestom.server.utils.Position;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
|
||||
/**
|
||||
* Created by k.shandurenko on 23.02.2021
|
||||
*/
|
||||
public class EntityTropicalFish extends EntityAbstractFish {
|
||||
|
||||
public EntityTropicalFish(@NotNull Position spawnPosition) {
|
||||
|
@ -7,9 +7,6 @@ import java.lang.invoke.MethodType;
|
||||
import java.util.function.Function;
|
||||
import java.util.function.Supplier;
|
||||
|
||||
/**
|
||||
* Created by k.shandurenko on 23.02.2021
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
public class LambdaMetafactoryUtils {
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user