diff options
Diffstat (limited to 'src/jrummikub/view/IView.java')
-rw-r--r-- | src/jrummikub/view/IView.java | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/src/jrummikub/view/IView.java b/src/jrummikub/view/IView.java index 6a96213..3e33e44 100644 --- a/src/jrummikub/view/IView.java +++ b/src/jrummikub/view/IView.java @@ -17,6 +17,13 @@ public interface IView { public ISettingsPanel getSettingsPanel(); /** + * Returns the score panel + * + * @return the score panel + */ + public IScorePanel getScorePanel(); + + /** * Returns the table * * @return the table @@ -91,7 +98,16 @@ public interface IView { /** * Shows or hides the game settings panel * - * @param show specifies if the panel shall be shown or hidden + * @param show + * specifies if the panel shall be shown or hidden */ void showSettingsPanel(boolean show); + + /** + * Shows or hides the score panel + * + * @param show + * specifies if the panel shall be shown or hidden + */ + void showScorePanel(boolean show); } |