Making sure it uses Microsoft Code Convention
This commit is contained in:
@@ -2,12 +2,12 @@ namespace OOP.RPG
|
||||
{
|
||||
public class Mage : Character
|
||||
{
|
||||
public Mage(int Mana)
|
||||
public Mage(int mana)
|
||||
{
|
||||
this.Mana = Mana;
|
||||
Mana = mana;
|
||||
}
|
||||
|
||||
public int Mana = 10;
|
||||
public int Mana { get; set; } = 10;
|
||||
|
||||
public override int Attack()
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user