mirror of
https://github.com/maxartz15/UnitySerializedReferenceUI.git
synced 2024-11-22 23:55:35 +01:00
eeaadfc569
Core now formed and contains all useful utility to create custom ui with restrictions. Many methods was extracted from different classes and moved to core. Undo is now supported(because unity's undo bug seems to be fixed). Example now moved into same level separate folder.
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
|
|
{
|
|
|
|
}
|
|
|