Projekt_APO-Automat_spozywczy/Sweets.java

10 lines
166 B
Java
Raw Normal View History

2021-10-13 00:50:25 +02:00
package apo;
public class Sweets extends AbstractProduct{
Sweets (String name, double price) {
setName(name);
setPrice(price);
}
}