diff --git a/Assets/Textus/SerializeReferenceUIExample/ExampleOfUsageFromDifferentAssembly/NotSupportedTypes/ExampleOfNotSupportedTypes.cs b/Assets/Textus/SerializeReferenceUIExample/ExampleOfUsageFromDifferentAssembly/NotSupportedTypes/ExampleOfNotSupportedTypes.cs index 80eb1f5..4af4122 100644 --- a/Assets/Textus/SerializeReferenceUIExample/ExampleOfUsageFromDifferentAssembly/NotSupportedTypes/ExampleOfNotSupportedTypes.cs +++ b/Assets/Textus/SerializeReferenceUIExample/ExampleOfUsageFromDifferentAssembly/NotSupportedTypes/ExampleOfNotSupportedTypes.cs @@ -9,19 +9,19 @@ public class ExampleOfNotSupportedTypes [Serializable] public class AnimalMonoBehaviour : MonoBehaviour, IAnimal { - public void Feed() => throw new NotImplementedException(); + public void Feed() => Debug.Log("thanks"); } [Serializable] public class AnimalScriptableObject : ScriptableObject, IAnimal { - public void Feed() => throw new NotImplementedException(); + public void Feed() => Debug.Log("thanks"); } [Serializable] public class AnimalPrivateConstructor : IAnimal { private AnimalPrivateConstructor(){} - public void Feed() => throw new NotImplementedException(); + public void Feed() => Debug.Log("thanks"); }