mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-02-19 16:26:40 +08:00
13 lines
197 B
Lua
13 lines
197 B
Lua
|
|
local RegionAttachment = {}
|
|
function RegionAttachment.new (name)
|
|
if not name then error("name cannot be nil", 2) end
|
|
|
|
local self = {
|
|
name = name
|
|
}
|
|
|
|
return self
|
|
end
|
|
return RegionAttachment
|