BreakOut 3.* Vorgabe - missing IStone.java
This commit is contained in:
parent
4fe42792ee
commit
9182e79f6b
17
src/break_out/model/IStone.java
Normal file
17
src/break_out/model/IStone.java
Normal 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);
|
||||||
|
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user