mirror of
https://github.com/maxartz15/UnitySerializedReferenceUI.git
synced 2024-11-22 15:45:35 +01:00
31 lines
297 B
C#
31 lines
297 B
C#
|
|
|||
|
public abstract class ApeBase : MammalBase, IApe
|
|||
|
{
|
|||
|
public string Tag = default;
|
|||
|
}
|
|||
|
|
|||
|
public interface IApe
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
public class RedApe : ApeBase
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
public class GoldenApe : ApeBase
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
public class GreenApe : ApeBase
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
public class BlackApe : ApeBase
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
|