mirror of
https://github.com/enduro2d/enduro2d.git
synced 2025-12-14 16:09:06 +07:00
9 lines
113 B
Lua
9 lines
113 B
Lua
---@class named
|
|
local named = {
|
|
---@type string
|
|
name = ""
|
|
}
|
|
|
|
---@type named
|
|
_G.named = _G.named or named
|