using System; namespace MagicTheProgramming { public class Creature : ICreature { public int Power {get;} public int Toughness {get;} public string Name {get;} public Creature(string _name, int _power, int _toughness) { this.Power = _power; this.Toughness = _toughness; this.Name = _name; } } }