summaryrefslogtreecommitdiff
path: root/src/main/java/cuchaz/enigma/Constants.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/cuchaz/enigma/Constants.java')
-rw-r--r--src/main/java/cuchaz/enigma/Constants.java20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/main/java/cuchaz/enigma/Constants.java b/src/main/java/cuchaz/enigma/Constants.java
deleted file mode 100644
index 577315f..0000000
--- a/src/main/java/cuchaz/enigma/Constants.java
+++ /dev/null
@@ -1,20 +0,0 @@
1/*******************************************************************************
2 * Copyright (c) 2015 Jeff Martin.
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the GNU Lesser General Public
5 * License v3.0 which accompanies this distribution, and is available at
6 * http://www.gnu.org/licenses/lgpl.html
7 * <p>
8 * Contributors:
9 * Jeff Martin - initial API and implementation
10 ******************************************************************************/
11
12package cuchaz.enigma;
13
14public class Constants {
15 public static final String NAME = "Enigma";
16 public static final String VERSION = "@VERSION@/Fabric";
17 public static final String URL = "https://fabricmc.net";
18 public static final int MiB = 1024 * 1024; // 1 mebibyte
19 public static final int KiB = 1024; // 1 kebibyte
20}