class EntityBoat

This commit is contained in:
Nikita Potapov 2022-11-14 23:40:40 +04:00
parent 7a4373645a
commit 533756d814

16
EntityBoat.java Normal file
View File

@ -0,0 +1,16 @@
import java.awt.*;
import java.util.Random;
public class EntityBoat {
public int Speed;
public float Weight;
public Color BodyColor;
public float Step;
public void Init(int speed, float weight, Color bodyColor) {
Random rnd = new Random();
Speed = speed <= 0 ? rnd.nextInt(50, 150) : speed;
Weight = weight <= 0 ? rnd.nextInt(40, 70) : weight;
BodyColor = bodyColor;
}
}