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