Example #1
0
 public WorldManager(IServiceContainer services) : base(services)
 {
     registeredSectorsRO = new SectorReadOnlyCollection(registeredSectors);
     registeredObjectsRO = new WorldObjectReadOnlyCollection(registeredObjects);
     registeredPortalsRO = new PortalReadOnlyCollection(registeredPortals);
 }
Example #2
0
 protected Sector(BoundingBox boundary)
 {
     this.boundary            = boundary;
     this.registeredObjectsRO = new WorldObjectReadOnlyCollection(registeredObjects);
 }