mirror of
https://github.com/ASDjonok/OOP_IO-2x_2023.git
synced 2026-04-21 21:34:35 +03:00
81ac59840f
This reverts commit 29e63163a4.
6 lines
131 B
Java
6 lines
131 B
Java
package encapsulationInheritancePolymorphism.inheritance;
|
|
|
|
public class FuelEngine extends Engine {
|
|
private String fuelType;
|
|
}
|