Upload files to "/"

This commit is contained in:
2026-06-01 09:00:25 +00:00
parent 30b3ef72a4
commit 176395b9cd
5 changed files with 476 additions and 12 deletions

12
PathInput.java Normal file
View File

@@ -0,0 +1,12 @@
package xyz.nodrop.farmingtools.client.pathfinding;
/**
* Snapshot of movement input for one tick.
* Passed from PathExecutor → MixinKeyboardInput.
*
* movementForward: 1.0 = forward, -1.0 = back
* movementSideways: 1.0 = left, -1.0 = right (MC convention)
*/
public record PathInput(float forward, float sideways, float upward, boolean jumping, boolean sprint, boolean sneaking) {
public static final PathInput NONE = new PathInput(0, 0, 0, false, false, false);
}