rework(docs): better, more readable docs

This commit is contained in:
Jacobwasbeast
2026-03-10 22:37:07 -05:00
parent f4ae519d9f
commit 6fabb8fd39
7 changed files with 477 additions and 372 deletions

14
docs/PROJECT_STRUCTURE.md Normal file
View File

@@ -0,0 +1,14 @@
# Project Structure
```
ModLoader/
├── WeaveLoader.Launcher/ # C# launcher executable
├── WeaveLoaderRuntime/ # C++ DLL injected into the game
├── WeaveLoader.Core/ # C# mod discovery and lifecycle
├── WeaveLoader.API/ # C# public API for mod authors
├── ExampleMod/ # Sample mod
├── build/ # Shared build output
├── WeaveLoader.sln
├── README.md
└── CONTRIBUTING.md
```