Color Ray - Forge 1.20.1 mod scaffold
-----------------------------------
What this archive contains:
- Gradle placeholder files (replace with Forge MDK or import into existing Forge workspace)
- src/main/java/...  : Java source files split into multiple classes
- src/main/resources: mods.toml, recipe, models, textures, sounds, lang

How to build:
1) Download the official Forge 1.20.1 MDK (or use your setup).
2) Replace build.gradle/settings.gradle with MDK's, or import this project into your IDE and add Forge dependencies.
3) Run Gradle tasks (e.g., 'gradlew build') per Forge MDK docs.
4) The produced jar can be uploaded to CurseForge as a mod (ensure proper license & metadata).

Notes & TODOs:
- This scaffold includes functional packet and menu wiring, but some logic is naive (e.g., block color matching uses defaultMapColor).
- You may need to split classes into separate files (they already are) and adjust package names as desired.
- Replace placeholder sound/texture with your own art/sfx.
