mirror of
https://github.com/maxartz15/UnitySerializedReferenceUI.git
synced 2024-11-22 15:45:35 +01:00
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
|
|
{
|
|
|
|
} |