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