mirror of
https://github.com/Jacobwasbeast/LegacyWeaveLoader.git
synced 2026-06-15 01:11:53 +00:00
SKSE-style external mod loader with zero game source modifications. - LegacyForge.Launcher: C# console app that injects runtime DLL into game process - LegacyForgeRuntime: C++ DLL with PDB symbol resolution, MinHook function hooking, and .NET CoreCLR hosting - LegacyForge.Core: C# mod discovery and lifecycle management - LegacyForge.API: Fabric-style mod API with namespaced string IDs, fluent property builders, and event system - ExampleMod: Sample mod demonstrating block/item registration
52 lines
420 B
Plaintext
52 lines
420 B
Plaintext
# Build outputs
|
|
bin/
|
|
obj/
|
|
out/
|
|
build/
|
|
x64/
|
|
x86/
|
|
Debug/
|
|
Release/
|
|
RelWithDebInfo/
|
|
MinSizeRel/
|
|
*.exe
|
|
*.dll
|
|
*.lib
|
|
*.pdb
|
|
*.ilk
|
|
*.exp
|
|
*.obj
|
|
*.o
|
|
|
|
# .NET
|
|
*.user
|
|
*.suo
|
|
*.vs/
|
|
.vs/
|
|
*.nupkg
|
|
project.lock.json
|
|
TestResults/
|
|
|
|
# CMake
|
|
CMakeCache.txt
|
|
CMakeFiles/
|
|
cmake_install.cmake
|
|
Makefile
|
|
*.cmake
|
|
!CMakeLists.txt
|
|
!cmake/*.cmake
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Config (user-specific)
|
|
legacyforge.json
|