Castle.Guard.Guard C# (CSharp) Méthode

Guard() public méthode

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
Résultat 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;
        }