Potapov N.S. LabWork01 #1

Closed
ns.potapov wants to merge 5 commits from LabWork01 into master
Showing only changes of commit 533756d814 - Show all commits

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;
}
}