aboutsummaryrefslogtreecommitdiff
path: root/src/main/LeaderboardEntry.java
diff options
context:
space:
mode:
authorsowgro <tpoke.ferrari@gmail.com>2024-07-08 02:41:31 -0400
committersowgro <tpoke.ferrari@gmail.com>2024-07-08 02:41:31 -0400
commitee2229339429d50afa33e2f8b9c0ee0939766290 (patch)
treea5ee54bd23c24950e9b10815f3e87605906992d8 /src/main/LeaderboardEntry.java
parent9e1371424bdf4c31d756d686313730d4c61f7ac5 (diff)
downloadNPEhero-ee2229339429d50afa33e2f8b9c0ee0939766290.tar.gz
NPEhero-ee2229339429d50afa33e2f8b9c0ee0939766290.tar.bz2
NPEhero-ee2229339429d50afa33e2f8b9c0ee0939766290.zip
Change project structure, embed resources into jar and remove libraries from source control
Diffstat (limited to 'src/main/LeaderboardEntry.java')
-rw-r--r--src/main/LeaderboardEntry.java28
1 files changed, 0 insertions, 28 deletions
diff --git a/src/main/LeaderboardEntry.java b/src/main/LeaderboardEntry.java
deleted file mode 100644
index 9a298b6..0000000
--- a/src/main/LeaderboardEntry.java
+++ /dev/null
@@ -1,28 +0,0 @@
-package main;
-
-public class LeaderboardEntry
-{
- private int score;
- private String name;
- private String date;
-
- public LeaderboardEntry(String name, int score, String date)
- {
- this.name = name;
- this.score = score;
- this.date = date;
- }
-
- public int getScore() {
- return score;
- }
-
- public String getName() {
- return name;
- }
-
- public String getDate()
- {
- return date;
- }
-}