diff --git a/Assets/Textus/SerializeReferenceUIExample/ExampleOfUsageFromDifferentAssembly/Animals/AnimalStruct.cs b/Assets/Textus/SerializeReferenceUIExample/ExampleOfUsageFromDifferentAssembly/Animals/AnimalStruct.cs index 453711e..bfb353d 100644 --- a/Assets/Textus/SerializeReferenceUIExample/ExampleOfUsageFromDifferentAssembly/Animals/AnimalStruct.cs +++ b/Assets/Textus/SerializeReferenceUIExample/ExampleOfUsageFromDifferentAssembly/Animals/AnimalStruct.cs @@ -1,8 +1,9 @@ using System; +using UnityEngine; [Serializable] public struct AnimalStruct : IAnimal { public string name; - public void Feed() => throw new NotImplementedException(); + public void Feed() => Debug.Log("thanks"); }