mirror of
https://github.com/maxartz15/UnitySerializedReferenceUI.git
synced 2024-11-22 15:45:35 +01:00
30 lines
296 B
C#
30 lines
296 B
C#
|
|
|||
|
public abstract class CatBase : MammalBase, ICat
|
|||
|
{
|
|||
|
public string Tag = default;
|
|||
|
}
|
|||
|
|
|||
|
public interface ICat
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
public class RedCat : CatBase
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
public class GoldenCat : CatBase
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
public class GreenCat : CatBase
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
public class BlackCat : CatBase
|
|||
|
{
|
|||
|
|
|||
|
}
|