24 lines
619 B
Java
24 lines
619 B
Java
|
package ProjectElectricLocomotive;
|
||
|
|
||
|
import java.awt.*;
|
||
|
|
||
|
public class EntityLocomotive {
|
||
|
public int Speed;
|
||
|
public double Weight;
|
||
|
public Color BodyColor;
|
||
|
public EntityLocomotive(int speed, double weight, Color bodyColor) {
|
||
|
Speed = speed;
|
||
|
Weight = weight;
|
||
|
BodyColor = bodyColor;
|
||
|
}
|
||
|
public double Step()
|
||
|
{
|
||
|
return (double) Speed * 100 / Weight;
|
||
|
}
|
||
|
public void Init(int speed, double weight, Color bodyColor, Color additionalColor, boolean horns, boolean seifbatteries) {
|
||
|
Speed = speed;
|
||
|
Weight = weight;
|
||
|
BodyColor = bodyColor;
|
||
|
}
|
||
|
}
|