diff --git a/src/main/java/inf112/skeleton/app/IDrawableGame.java b/src/main/java/inf112/skeleton/app/IDrawableGame.java index ee27bfa..0cc8101 100644 --- a/src/main/java/inf112/skeleton/app/IDrawableGame.java +++ b/src/main/java/inf112/skeleton/app/IDrawableGame.java @@ -7,6 +7,18 @@ import java.util.List; */ public interface IDrawableGame { + /** + * Gets the screen width of the game + * @return A positive integer + */ + int getWidth(); + + /** + * Gets the screen height of the game + * @return A positive integer + */ + int getHeight(); + /** * Gets a list of objects which are to be rendered * @return A list of drawable objects in the order they are to be drawn