Castle.Guard.Guard C# (CSharp) 메소드

Guard() 공개 메소드

public Guard ( String name, String inventoryName, int roomId, int x, int y, int character, string description, string showItem, string playItem, string showDescription ) : System
name String
inventoryName String
roomId int
x int
y int
character int
description string
showItem string
playItem string
showDescription string
리턴 System
        public Guard(String name, String inventoryName, int roomId, int x, int y, int character, string description, string showItem, string playItem, string showDescription)
            : base(name, inventoryName, roomId, x, y, character, 100, description, description)
        {
            this.showItem = showItem;
            this.playItem = playItem;
            this.showDescription = showDescription;
            this.Value = 0;
            this.IsGuard = true;
        }