mirror of
https://github.com/enduro2d/enduro2d.git
synced 2025-12-15 08:15:38 +07:00
16 lines
232 B
Lua
16 lines
232 B
Lua
---@class sound
|
|
local sound = {
|
|
}
|
|
|
|
---@type sound
|
|
_G.sound = _G.sound or sound
|
|
|
|
---@class sound_asset
|
|
local sound_asset = {
|
|
---@type sound
|
|
content = nil
|
|
}
|
|
|
|
---@type sound_asset
|
|
_G.sound_asset = _G.sound_asset or sound_asset
|