UnitySerializedReferenceUI/Assets/TextusGames/Enhancements/SerializeReferenceUI/Example/ExampleOfUsageFromDifferentAssembly/Animals/ApeBase.cs
TextusGames 0581978db8 FIrst Real Commit
Code refactor and migration to github.
2020-05-16 16:17:04 +03:00

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
{
}