spine-runtimes/spine-corona/spine/RegionAttachment.lua
2013-02-20 01:13:59 +01:00

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