MiniRPG/scripts/objects/characters/Enemy.cs

8 lines
No EOL
257 B
C#

public class Enemy : Character {
public List<Move> moves { get; set; }
public Enemy(string name, int maxhealth, int currenthealth, int maxmpoints, int currentmpoints) : base(name, maxhealth, currenthealth, maxmpoints, currentmpoints)
{
}
}