mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-02-04 14:24:53 +08:00
9 lines
195 B
C#
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);
|
|
}
|
|
}
|