Files
OOP/RPG/Mage.cs
2025-08-18 10:24:52 +02:00

17 lines
265 B
C#

namespace OOP.RPG
{
public class Mage : Character
{
public Mage(int Mana)
{
this.Mana = Mana;
}
public int Mana = 10;
public override int Attack()
{
return Mana / 2;
}
}
}