Skip to content

Commit

Permalink
Add Skeleton Ui Class
Browse files Browse the repository at this point in the history
  • Loading branch information
nkotaa committed Mar 13, 2024
1 parent 8224a7e commit d6eeee7
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions src/main/java/seedu/binbash/ui/Ui.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
package seedu.binbash.ui;

import java.util.Scanner;

public class Ui {
private static final String WELCOME_MESSAGE = "Welcome to BinBash!";
private static final String GOODBYE_MESSAGE = "Bye!";
private static final String LINE_DIVIDER = "-------------------------------------------------------------";

private Scanner in;
private boolean isUserActive;

public Ui() {
in = new Scanner(System.in);
isUserActive = true;
}

public boolean isUserActive() {
return isUserActive;
}
}

0 comments on commit d6eeee7

Please sign in to comment.