Esempio n. 1
0
        public CellarAddon(CellarStyle style)
        {
            _Style       = style;
            _FloorTiles  = new List <CellarFloor>();
            _WallTiles   = new List <CellarWall>();
            _Placeholder = AddComponent(new CellarPlaceholder(0xF39), Point3D.Zero);

            Cellars.Add(this);
        }
Esempio n. 2
0
        public override void OnAfterDelete()
        {
            base.OnAfterDelete();

            Cellars.Remove(this);
        }
Esempio n. 3
0
 public CellarAddon(Serial serial)
     : base(serial)
 {
     Cellars.Add(this);
 }