Initialize Minecraft Forge mod structure with essential files and configurations. Added .gitattributes to manage line endings, .gitignore for IDE and build artifacts, and build.gradle for project setup. Included example mod files, configuration, and metadata in mods.toml. Added changelog, credits, and license files for documentation. Set up Gradle wrapper for consistent builds.

This commit is contained in:
Mr¤KayJayDee
2025-10-23 14:13:00 +02:00
commit 58919ced40
17 changed files with 2619 additions and 0 deletions

5
.gitattributes vendored Normal file
View File

@@ -0,0 +1,5 @@
# Disable autocrlf on generated files, they always generate with LF
# Add any extra files or paths here to make git stop saying they
# are changed when only line endings change.
src/generated/**/.cache/cache text eol=lf
src/generated/**/*.json text eol=lf