Replace Random with EaglercraftRandom

This commit is contained in:
catfoolyou 2025-02-01 15:19:58 -05:00
parent 0e170a2ae6
commit 477aa74050
655 changed files with 904 additions and 1207 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
bin/

BIN
.gradle/file-system.probe Normal file

Binary file not shown.

View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="CompilerConfiguration">
<bytecodeTargetLevel target="17" />
<bytecodeTargetLevel target="18" />
</component>
</project>

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ExternalStorageConfigurationManager" enabled="true" />
<component name="ProjectRootManager" version="2" languageLevel="JDK_17" default="true" project-jdk-name="corretto-18" project-jdk-type="JavaSDK" />
<component name="ProjectRootManager" version="2" languageLevel="JDK_18" default="true" project-jdk-name="corretto-18" project-jdk-type="JavaSDK" />
</project>

View File

@ -1,6 +1,5 @@
plugins {
id "java"
id "application"
}
sourceSets {
@ -24,18 +23,3 @@ tasks.withType(JavaCompile) {
dependencies {
implementation fileTree(dir: './lwjgl-rundir/', include: '*.jar')
}
distributions {
main {
contents {
from file("$projectDir/lwjgl-rundir/resources")
into('/')
}
}
}
application {
mainClass = 'net.lax1dude.eaglercraft.MinecraftMain'
applicationDefaultJvmArgs = ['-Djava.library.path=lwjgl-rundir']
}

Some files were not shown because too many files have changed in this diff Show More