new evolved.name function

This commit is contained in:
BlackMATov
2025-06-30 23:21:46 +07:00
parent b5d8ced4c8
commit 5eb8902d5a
5 changed files with 206 additions and 21 deletions

View File

@@ -1067,6 +1067,7 @@ DESTRUCTION_POLICY_REMOVE_FRAGMENT :: id
```
id :: integer? -> id...
name :: id... -> string...
pack :: integer, integer, integer? -> id
unpack :: id -> integer, integer, integer
@@ -1260,6 +1261,15 @@ builder_mt:destruction_policy :: id -> builder
function evolved.id(count) end
```
### `evolved.name`
```lua
---@param ... evolved.id ids
---@return string... names
---@nodiscard
function evolved.name(...) end
```
### `evolved.pack`
```lua