mirror of
https://github.com/enduro2d/enduro2d.git
synced 2025-12-14 16:09:06 +07:00
16 lines
232 B
Lua
16 lines
232 B
Lua
---@class shape
|
|
local shape = {
|
|
}
|
|
|
|
---@type shape
|
|
_G.shape = _G.shape or shape
|
|
|
|
---@class shape_asset
|
|
local shape_asset = {
|
|
---@type shape
|
|
content = nil
|
|
}
|
|
|
|
---@type shape_asset
|
|
_G.shape_asset = _G.shape_asset or shape_asset
|