Revert "Done lab 1-3"

This reverts commit 29e63163a4.
This commit is contained in:
Oleksii Aleshchenko
2023-04-04 22:33:00 +03:00
parent 1e6825d7d4
commit 81ac59840f
48 changed files with 605 additions and 205 deletions
@@ -0,0 +1,10 @@
package encapsulationInheritancePolymorphism.polymorphism;
public class FuelEngine extends Engine {
private String fuelType;
@Override
public int getPower() {
return 50;
}
}