diff --git a/Example/SystemExamples/PlayerStorage/Script/DataStorageItem.cs b/Example/SystemExamples/PlayerStorage/Script/DataStorageItem.cs index 2ea02a3..4799c41 100644 --- a/Example/SystemExamples/PlayerStorage/Script/DataStorageItem.cs +++ b/Example/SystemExamples/PlayerStorage/Script/DataStorageItem.cs @@ -28,7 +28,7 @@ namespace EGFramework.Example.SystemExamples.PlayerStorage throw new NotImplementedException(); } - public string GetName() + public string GetItemName() { throw new NotImplementedException(); } diff --git a/Example/SystemExamples/PlayerStorage/Script/InterfaceStorage.cs b/Example/SystemExamples/PlayerStorage/Script/InterfaceStorage.cs index 0fb926e..2d07b33 100644 --- a/Example/SystemExamples/PlayerStorage/Script/InterfaceStorage.cs +++ b/Example/SystemExamples/PlayerStorage/Script/InterfaceStorage.cs @@ -9,7 +9,7 @@ namespace EGFramework.Example.SystemExamples.PlayerStorage public interface IItem { public int GetItemId(); - public string GetName(); + public string GetItemName(); public Texture GetIcon(); public string GetInfo(); } diff --git a/Example/UsingTest/Script/EGSaveTest.cs b/Example/UsingTest/Script/EGSaveTest.cs index e2c5b03..a9d1274 100644 --- a/Example/UsingTest/Script/EGSaveTest.cs +++ b/Example/UsingTest/Script/EGSaveTest.cs @@ -12,19 +12,23 @@ namespace EGFramework.Examples.Test{ { this.Label = this.GetNode