public Personatge(string nom, int nivell)
public class PersonatgeOrc : Personatge
public PersonatgeOrc(string nom, int nivell, int velocitat) : base (nom, nivell)
public static void Main()
PersonatgeOrc orc = new PersonatgeOrc("Thrall", 10, 20);
Console.WriteLine($"Nom: {orc.Nom}. Nivell: {orc.Nivell}. Velocitat: {orc.Velocitat}");