1
0
Fork 0
uni_informatik_projekt/src/break_out/model/ILevel.java

18 lines
316 B
Java
Raw Normal View History

2019-12-01 16:28:54 +00:00
package break_out.model;
2019-12-30 15:04:19 +00:00
import java.util.ArrayList;
2019-12-01 16:28:54 +00:00
public interface ILevel {
2019-12-01 16:39:37 +00:00
// Exercise 1
public Ball getBall();
2019-12-17 17:10:30 +00:00
// Exercise 2
2019-12-01 16:39:37 +00:00
public Paddle getPaddleTop();
public Paddle getPaddleBottom();
2019-12-17 17:10:30 +00:00
// Exercise 3
public void setFinished(boolean finished);
2019-12-30 15:04:19 +00:00
// Exercise 4
public ArrayList<Stone> getStones();
2019-12-01 16:28:54 +00:00
}