Added missing require

Corona SDK was throwing the following error:
File: spine-lua/AttachmentLoader.lua
Line: 46
Attempt to index global 'MeshAttachment' (a nil value)
This commit is contained in:
davidroulin 2015-03-10 11:35:54 +01:00
parent 8544125ead
commit ab79c06443

View File

@ -30,6 +30,7 @@
local AttachmentType = require "spine-lua.AttachmentType"
local RegionAttachment = require "spine-lua.RegionAttachment"
local MeshAttachment = require "spine-lua.MeshAttachment"
local BoundingBoxAttachment = require "spine-lua.BoundingBoxAttachment"
local AttachmentLoader = {}