Castle.Guard.Guard C# (CSharp) Method

Guard() public method

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
return 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;
        }