Server.Multis.BankerCamp.AddComponents C# (CSharp) Méthode

AddComponents() public méthode

public AddComponents ( ) : void
Résultat void
        public override void AddComponents()
        {
            BaseDoor west, east;

            this.AddItem(west = new LightWoodGate(DoorFacing.WestCW), -4, 4, 7);
            this.AddItem(east = new LightWoodGate(DoorFacing.EastCCW), -3, 4, 7);

            west.Link = east;
            east.Link = west;

            this.AddItem(new Sign(SignType.Bank, SignFacing.West), -5, 5, -4);

            this.AddMobile(new Banker(), 4, -4, 3, 7);
            this.AddMobile(new Banker(), 5, 4, -2, 0);
        }