Ajout 1.13

This commit is contained in:
Marc Baloup 2018-07-23 23:06:51 +02:00
parent 4f1446e3a5
commit 6e5cdd16af
No known key found for this signature in database
GPG Key ID: 3A4F019B6C600FDE
3 changed files with 4 additions and 1 deletions

View File

@ -10,6 +10,7 @@
<attributes>
<attribute name="optional" value="true"/>
<attribute name="maven.pomderived" value="true"/>
<attribute name="test" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8">

View File

@ -2,4 +2,5 @@ eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8
org.eclipse.jdt.core.compiler.compliance=1.8
org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning
org.eclipse.jdt.core.compiler.release=disabled
org.eclipse.jdt.core.compiler.source=1.8

View File

@ -17,7 +17,8 @@ public enum MinecraftVersion {
v1_11_1_to_1_11_2(316, "1.11.1-1.11.2"),
v1_12(335, "1.12"),
v1_12_1(338, "1.12.1"),
v1_12_2(340, "1.12.2");
v1_12_2(340, "1.12.2"),
v1_13(393, "1.13");
public final int versionNumber;
public final String versionDisplay;