mirror of
https://github.com/maxartz15/UnitySerializedReferenceUI.git
synced 2024-11-23 08:05:34 +01:00
1e8f80077f
Classes that has no empty parameters are not supported and not shown(activator can not create instances of them).
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();
|
|
}
|