AcademyRPG.Guard.Guard C# (CSharp) Method

Guard() public method

public Guard ( string name, Point position, int owner ) : System
name string
position Point
owner int
return System
        public Guard(string name, Point position, int owner)
            : base(name, position, owner)
        {
            this.HitPoints = 100;
        }