Upload source

This commit is contained in:
CatFoolYou 2025-01-28 17:42:43 +00:00
commit e65ed63b59
4060 changed files with 226397 additions and 0 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

Binary file not shown.

View File

@ -0,0 +1,2 @@
#Tue Nov 12 08:53:21 EST 2024
gradle.version=8.0

Binary file not shown.

BIN
.gradle/file-system.probe Normal file

Binary file not shown.

View File

41
build.gradle Normal file
View File

@ -0,0 +1,41 @@
plugins {
id "java"
id "application"
}
sourceSets {
main {
java {
srcDir 'src/main/java'
srcDir 'src/lwjgl/java'
}
}
}
repositories {
mavenCentral()
}
tasks.withType(JavaCompile) {
options.warnings = false
options.compilerArgs << "-Xmaxerrs" << "1000"
}
dependencies {
implementation fileTree(dir: './lwjgl-rundir/', include: '*.jar')
}
distributions {
main {
contents {
from file("$projectDir/lwjgl-rundir/resources/assets")
into('/')
}
}
}
application {
mainClass = 'net.minecraft.client.main.Main'
applicationDefaultJvmArgs = ['-Djava.library.path=lwjgl-rundir']
}

Binary file not shown.

Binary file not shown.

Binary file not shown.

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