mirror of
https://github.com/maxartz15/UnitySerializedReferenceUI.git
synced 2024-11-22 15:45:35 +01:00
30 lines
327 B
C#
30 lines
327 B
C#
|
|
|||
|
public abstract class InsectBase : AnimalBase, IInsect
|
|||
|
{
|
|||
|
public string Tag = default;
|
|||
|
}
|
|||
|
|
|||
|
public interface IInsect
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
public class RedInsect : InsectBase
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
public class GoldenInsect : InsectBase
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
public class GreenInsect : InsectBase
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
public class BlackInsect : InsectBase
|
|||
|
{
|
|||
|
|
|||
|
}
|