This commit is contained in:
Quentin
2023-07-02 00:59:02 +02:00
committed by GitHub
parent f96356960a
commit 3bdd0796f4
56 changed files with 2804 additions and 24 deletions

View File

@ -0,0 +1,25 @@
# Class: lua_patch
Class representing a in-memory patch.
## Functions (2)
### `apply()`
Apply the modified value.
**Exemple Usage:**
```lua
lua_patch:apply()
```
### `restore()`
Restore the original value.
**Exemple Usage:**
```lua
lua_patch:restore()
```