15 lines
259 B
C#
15 lines
259 B
C#
namespace OOP.Animals
|
|
{
|
|
public class Parrot : Animal
|
|
{
|
|
public Parrot()
|
|
{
|
|
Name = GetType().Name;
|
|
}
|
|
|
|
public override void MakeSound()
|
|
{
|
|
Console.WriteLine("Sqawk");
|
|
}
|
|
}
|
|
} |