mirror of
https://github.com/Jacobwasbeast/LegacyWeaveLoader.git
synced 2026-05-25 23:24:31 +00:00
15 lines
498 B
Markdown
15 lines
498 B
Markdown
# 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
|
|
```
|