This commit is contained in:
LeterZP
2026-02-13 00:17:04 +03:00
commit da7c6aa397
23 changed files with 760 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
package food;
public interface Eatable {
double getTaste();
Color getColor();
void setTaste(double taste);
void setColor(Color color);
void changeTaste(double change);
}