1
0

Initial Commit

This commit is contained in:
2023-06-11 13:26:01 +02:00
commit 43bcd45b00
32 changed files with 1189 additions and 0 deletions

29
settings.gradle Normal file
View File

@@ -0,0 +1,29 @@
pluginManagement {
repositories {
gradlePluginPortal()
maven {
url "https://maven.firstdarkdev.xyz/releases"
}
maven {
name = 'Fabric'
url = 'https://maven.fabricmc.net/'
}
maven {
name = 'Sponge Snapshots'
url = 'https://repo.spongepowered.org/repository/maven-public/'
}
maven {
name = 'Quilt (Release)'
url = 'https://maven.quiltmc.org/repository/release'
}
maven {
name = 'Quilt (Snapshot)'
url = 'https://maven.quiltmc.org/repository/snapshot'
}
}
}
rootProject.name = 'multiplatform-template'
include('Common', 'Fabric', 'Forge')