UnitySerializedReferenceUI/Assets/Textus/SerializeReferenceUIExample/ExampleOfUsageFromDifferentAssembly/Animals/AnimalStruct.cs

9 lines
161 B
C#
Raw Normal View History

using System;
[Serializable]
public struct AnimalStruct : IAnimal
{
public string name;
public void Feed() => throw new NotImplementedException();
}