LethalLib
My personal modding tools for Lethal Company
File Explorer
- dotnet-tools.json
- build.yml
- publish.yml
- Assembly-CSharp-firstpass.dll
- Assembly-CSharp.dll
- DunGen.dll
- MMHOOK_Assembly-CSharp.dll
- Unity.InputSystem.dll
- Unity.Netcode.Runtime.dll
- post-checkout
- lethallib
- lethal-lib.png
- thunderstore.toml
- LethalLevelLoaderCompat.cs
- DungeonDef.cs
- DungeonGraphLineDef.cs
- Extensions.cs
- GameObjectChanceDef.cs
- SpawnableMapObjectDef.cs
- SpawnableOutsideObjectDef.cs
- UnlockableItemDef.cs
- WeatherDef.cs
- ContentLoader.cs
- Dungeon.cs
- Enemies.cs
- Items.cs
- Levels.cs
- MapObjects.cs
- NetworkPrefabs.cs
- Player.cs
- PrefabUtils.cs
- Shaders.cs
- TerminalUtils.cs
- Unlockables.cs
- Utilities.cs
- Weathers.cs
- LethalLib.csproj
- Plugin.cs
- MMHOOK_Assembly-CSharp.dll
- .editorconfig
- .gitattributes
- .gitignore
- CHANGELOG.md
- Directory.Build.props
- LethalLib.sln
- LICENSE
- NuGet.Config
- README.md
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
git checkout
View Details ▼
git checkout
Checkout a branch or paths to the working tree.
git checkout -b {{branch_name}}
Create and switch to a new branch:
git checkout -b {{branch_name}} {{reference}}
Create and switch to a new branch based on a specific reference (branch, remote/branch, tag are examples of valid references):
git checkout {{branch_name}}
Switch to an existing local branch:
git config
View Details ▼
git config
Manage custom configuration options for Git repositories.
These configurations can be local (for the current repository) or global (for the current user).
git config --global {{user.name|user.email}} "{{Your Name|[email protected]}}"
Globally set your name or email (this information is required to commit to a repository and will be included in all commits):
git config --{{local|global|system}} {{[-l|--list]}} --show-origin
List local, global, or system configuration entries and show their file location:
git config --global {{alias.unstage}} "reset HEAD --"
Set the global value of a given configuration entry (in this case an alias):
copy
View Details ▼
copy
Copy files.
COPY {{path/to/source_file}} {{path/to/destination_file}}
Copy a file:
