AcademyRPG.Rock.Rock C# (CSharp) Method

Rock() public method

public Rock ( int hitPoints, Point position ) : System
hitPoints int
position Point
return System
        public Rock(int hitPoints, Point position)
            : base(position)
        {
            this.HitPoints = hitPoints;
            this.Type = ResourceType.Stone;
            this.Quantity = this.HitPoints / 2;
        }
Rock