Initial project setup: RoadRunner (Multi-loader Stonecutter Template)

This commit is contained in:
bnair123
2025-12-31 00:45:01 +04:00
parent 32daa04478
commit 9a44e600ea
21 changed files with 833 additions and 0 deletions

24
README_SETUP.md Normal file
View File

@@ -0,0 +1,24 @@
# RoadRunner Setup Instructions
## Prerequisites
1. **Java 21 JDK**: You must have Java 21 installed.
- Verify with: `java -version`
2. **IntelliJ IDEA**: Recommended IDE for Kotlin/Minecraft development.
- Install the "Minecraft Development" plugin.
## Getting Started
1. Open this folder in IntelliJ IDEA.
2. Allow Gradle to sync. This might take a few minutes as it downloads Minecraft and dependencies.
3. To run the mod:
- Open the "Gradle" tab in IntelliJ.
- Navigate to `RoadRunner -> Tasks -> architectury -> runClient`.
- Or run in terminal: `./gradlew runClient`
## Project Structure
- `src/main/kotlin`: Main mod logic (Common code)
- `src/main/java`: Java sources (Mixins)
- `versions/`: Loader-specific configurations (Fabric/NeoForge)
- `PLAN.md`: Development roadmap
## Next Steps
Check `PLAN.md` for the feature roadmap.