mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2025-12-20 09:16:01 +08:00
14 lines
198 B
Lua
14 lines
198 B
Lua
|
|
local BoneData = {}
|
|
function BoneData.new (name, parent)
|
|
if not name then error("name cannot be nil", 2) end
|
|
|
|
local self = {
|
|
name = name,
|
|
parent = parent
|
|
}
|
|
|
|
return self
|
|
end
|
|
return BoneData
|