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

cn.nukkit.entity.ai.memory.NearestPlayerMemory Maven / Gradle / Ivy

There is a newer version: 1.20.40-r1
Show newest version
package cn.nukkit.entity.ai.memory;

import cn.nukkit.Player;
import cn.nukkit.api.PowerNukkitXOnly;
import cn.nukkit.api.Since;

@PowerNukkitXOnly
@Since("1.6.0.0-PNX")
public class NearestPlayerMemory extends PlayerMemory {

    public NearestPlayerMemory() {
        super(null);
    }

    public NearestPlayerMemory(Player player) {
        super(player);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy