From 695d3c07350df17e7d7e0f9ae935949a29fc348d Mon Sep 17 00:00:00 2001 From: ww-rm Date: Tue, 15 Apr 2025 20:16:10 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0Attachments=E5=85=AC=E5=BC=80?= =?UTF-8?q?=E5=B1=9E=E6=80=A7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- SpineRuntimes/SpineRuntime21/Skin.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/SpineRuntimes/SpineRuntime21/Skin.cs b/SpineRuntimes/SpineRuntime21/Skin.cs index 247f28f..55a03aa 100644 --- a/SpineRuntimes/SpineRuntime21/Skin.cs +++ b/SpineRuntimes/SpineRuntime21/Skin.cs @@ -39,8 +39,9 @@ namespace SpineRuntime21 { new Dictionary, Attachment>(AttachmentComparer.Instance); public String Name { get { return name; } } + public Dictionary, Attachment> Attachments { get { return attachments; } } - public Skin (String name) { + public Skin (String name) { if (name == null) throw new ArgumentNullException("name cannot be null."); this.name = name; }