mirror of
https://github.com/maxartz15/UnitySerializedReferenceUI.git
synced 2024-11-23 08:05:34 +01:00
9 lines
161 B
C#
9 lines
161 B
C#
|
using System;
|
|||
|
|
|||
|
[Serializable]
|
|||
|
public struct AnimalStruct : IAnimal
|
|||
|
{
|
|||
|
public string name;
|
|||
|
public void Feed() => throw new NotImplementedException();
|
|||
|
}
|