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

dev.jorel.commandapi.wrappers.ParticleData Maven / Gradle / Ivy

There is a newer version: 9.5.3
Show newest version
package dev.jorel.commandapi.wrappers;

import org.bukkit.Particle;

/**
 * A data structure that stores a particle and its corresponding data (or null
 * if no data is present)
 */
public record ParticleData (
		/**
		 * The particle that this data structure is storing.
		 */
		Particle particle,
		/**
		 * The data that this particle contains, or null if no data is present. This can
		 * be passed to {@link org.bukkit.World#spawnParticle}
		 */
		T data) {
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy