From 2f7f5cb5d495b297fa7fd091860510a6c7aa7485 Mon Sep 17 00:00:00 2001 From: ilotterytea Date: Thu, 6 Oct 2022 01:10:30 +0600 Subject: new constants check it out --- core/src/com/ilotterytea/maxoning/MaxonConstants.java | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'core/src/com') 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(); + } -- cgit v1.2.3