AcademyRPG.Knight.Knight C# (CSharp) Méthode

Knight() public méthode

public Knight ( string name, Point position, int owner ) : System
name string
position Point
owner int
Résultat System
        public Knight(string name, Point position, int owner)
            : base(name, position, owner)
        {
            this.AttackPoints = 100;
            this.DefensePoints = 100;
            this.HitPoints = 100;
        }