HexCasting/Common/src/main/java/at/petrak/hexcasting/api/player/FlightAbility.java

13 lines
377 B
Java
Raw Normal View History

2022-04-12 21:13:51 +02:00
package at.petrak.hexcasting.api.player;
2022-04-12 04:40:18 +02:00
import net.minecraft.resources.ResourceKey;
import net.minecraft.world.level.Level;
import net.minecraft.world.phys.Vec3;
2023-02-17 21:11:16 +01:00
/**
* @param timeLeft sentinel of -1 for infinite
* @param radius sentinel of negative for infinite
*/
public record FlightAbility(int timeLeft, ResourceKey<Level> dimension, Vec3 origin, double radius) {
2022-04-12 04:40:18 +02:00
}