Skip to content

Commit

Permalink
Update project structure
Browse files Browse the repository at this point in the history
  • Loading branch information
woodenclock committed Oct 9, 2023
1 parent 95b5f9b commit 9f45486
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 39 deletions.
18 changes: 0 additions & 18 deletions src/main/java/seedu/duke/animal/Animal.java

This file was deleted.

20 changes: 0 additions & 20 deletions src/main/java/seedu/operatingsystem/BootUp.java

This file was deleted.

2 changes: 1 addition & 1 deletion src/main/java/seedu/wildwatch/WildWatch.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package seedu.wildwatch;

import seedu.operatingsystem.BootUp;
import seedu.wildwatch.operatingsystem.BootUp;
import java.util.Scanner;

public class WildWatch {
Expand Down
6 changes: 6 additions & 0 deletions src/main/java/seedu/wildwatch/entry/Entry.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
package seedu.wildwatch.entry;

public class Entry {
private String date;

}
20 changes: 20 additions & 0 deletions src/main/java/seedu/wildwatch/operatingsystem/BootUp.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
package seedu.wildwatch.operatingsystem;

public class BootUp {
public static final String WELCOME_MESSAGE =
"Hello there! Welcome to Wild Watch!\n";
public static final String LOGO =
"____ __ ____ __ __ _______ \n" +
"\\ \\ / \\ / / | | | | | \\ \n" +
" \\ \\/ \\/ / | | | | | .--. | \n" +
" \\ / | | | | | | | | \n" +
" \\ /\\ / | | | `----.| '--' | \n" +
" \\__/ \\__/ |__| |_______||_______/ \n" +
" \n" +
"____ __ ____ ___ .___________. ______ __ __ \n" +
"\\ \\ / \\ / / / \\ | | / || | | | \n" +
" \\ \\/ \\/ / / ^ \\ `---| |----`| ,----'| |__| | \n" +
" \\ / / /_\\ \\ | | | | | __ | \n" +
" \\ /\\ / / _____ \\ | | | `----.| | | | \n" +
" \\__/ \\__/ /__/ \\__\\ |__| \\______||__| |__| ";
}

0 comments on commit 9f45486

Please sign in to comment.