2013-04-11 10:25:12 +02:00

9 lines
195 B
C#

using System;
namespace Spine {
public interface AttachmentLoader {
/** @return May be null to not load any attachment. */
Attachment NewAttachment (AttachmentType type, String name);
}
}