camel case

This commit is contained in:
2025-04-28 18:08:10 +02:00
parent 533e6260d5
commit 0fb24263e0
3 changed files with 6 additions and 6 deletions

View File

@@ -151,7 +151,7 @@ public class Window {
double y[] = new double[1];
glfwGetCursorPos(this.window, x, y);
Vector2f cursorPos = this.cam.getCursorWorldFloorPos(new Vector2f((float) x[0], (float) y[0]), windowWidth, windowHeight);
Coordinate selectedCell = DDDPlacement.vector_to_coordinates(cursorPos);
Coordinate selectedCell = DDDPlacement.vectorToCoordinates(cursorPos);
if (this.lastCell == null) {
this.lastCell = selectedCell;
if (selectedCell.isValid())