1
0
Fork 0

BreakOut 3.* Vorgabe - missing IStone.java

This commit is contained in:
rxbn_ 2019-12-17 20:37:54 +01:00
parent 4fe42792ee
commit 9182e79f6b
1 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,17 @@
package break_out.model;
import java.awt.*;
public interface IStone {
// Exercise 3
public int getType();
public int getValue();
public Color getColor();
public Position getPosition();
public void setType(int type);
public void setValue(int value);
public void setColor(Color color);
public void setPosition(Position position);
}