AcademyRPG.Rock.Rock C# (CSharp) 메소드

Rock() 공개 메소드

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