summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorilotterytea <iltsu@alright.party>2022-10-06 01:10:30 +0600
committerilotterytea <iltsu@alright.party>2022-10-06 01:10:30 +0600
commit2f7f5cb5d495b297fa7fd091860510a6c7aa7485 (patch)
treec92d865a6002bf85bee9424521ef0094cd5bb8ae /core
parent504825282ff0e781891621672028e706c2655773 (diff)
new constants check it out
Diffstat (limited to 'core')
-rw-r--r--core/src/com/ilotterytea/maxoning/MaxonConstants.java5
1 files changed, 5 insertions, 0 deletions
diff --git a/core/src/com/ilotterytea/maxoning/MaxonConstants.java b/core/src/com/ilotterytea/maxoning/MaxonConstants.java
index 9790f80..04bc932 100644
--- a/core/src/com/ilotterytea/maxoning/MaxonConstants.java
+++ b/core/src/com/ilotterytea/maxoning/MaxonConstants.java
@@ -5,6 +5,7 @@ import com.badlogic.gdx.files.FileHandle;
import com.ilotterytea.maxoning.utils.OsUtils;
import java.text.DecimalFormat;
+import java.text.SimpleDateFormat;
public class MaxonConstants {
public static final String GAME_NAME = "Maxon Petting Simulator";
@@ -20,4 +21,8 @@ public class MaxonConstants {
public static final FileHandle FILE_RU_RU = Gdx.files.internal("i18n/ru_ru.json");
public static final DecimalFormat DECIMAL_FORMAT = new DecimalFormat("###,###.##");
+ @SuppressWarnings("SimpleDateFormat")
+ public static final SimpleDateFormat DATE_FORMAT = new SimpleDateFormat("dd/M/yyyy hh:mm:ss");
+ public static final long startTime = System.currentTimeMillis();
+
}