mirror of
https://github.com/maxartz15/UnitySerializedReferenceUI.git
synced 2024-11-22 15:45:35 +01:00
7 lines
117 B
C#
7 lines
117 B
C#
|
using System;
|
|||
|
|
|||
|
[Serializable]
|
|||
|
public abstract class MammalBase : AnimalBase
|
|||
|
{
|
|||
|
public int numberOfBones;
|
|||
|
}
|