mirror of
https://github.com/maxartz15/UnitySerializedReferenceUI.git
synced 2024-11-23 08:05:34 +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.
28 lines
303 B
C#
28 lines
303 B
C#
public abstract class FishBase : AnimalBase, IFish
|
|
{
|
|
public string Tag = default;
|
|
}
|
|
|
|
public interface IFish
|
|
{
|
|
|
|
}
|
|
public class RedFish : FishBase
|
|
{
|
|
|
|
}
|
|
|
|
public class GoldenFish : FishBase
|
|
{
|
|
|
|
}
|
|
|
|
public class GreenFish : FishBase
|
|
{
|
|
|
|
}
|
|
|
|
public class BlackFish : FishBase
|
|
{
|
|
|
|
} |