This commit is contained in:
Zyzf 2022-11-07 10:51:50 +04:00
parent f3180c1e37
commit 8b9754e0a4
2 changed files with 2 additions and 16 deletions

View File

@ -11,9 +11,9 @@ public class DrawningOars {
_numOars = NumberOars.FromInteger(numberOars);
}
public int deltaYdown = 0;
public void Init(Color trackRollersColor)
public void Init(Color oarsColor)
{
_OarsColor = trackRollersColor;
_OarsColor = oarsColor;
}
public void DrawOars(GraphicsContext gc, float startPosX, float startPosY) {

View File

@ -1,14 +0,0 @@
package com.example.pibd22_kalyshev_y_v_motorboat_hard;
import javafx.fxml.FXML;
import javafx.scene.control.Label;
public class HelloController {
@FXML
private Label welcomeText;
@FXML
protected void onHelloButtonClick() {
welcomeText.setText("Welcome to JavaFX Application!");
}
}