Beispiel #1
0
        public Obelisk(ObeliskConfiguration config, IDatabasePreloader databasePreloader, Map map)
        {
            _config            = config;
            _databasePreloader = databasePreloader;
            Map = map;

            Init();
        }
Beispiel #2
0
        public Obelisk(ObeliskConfiguration config, Map map, IMobFactory mobFactory)
        {
            _config     = config;
            _mobFactory = mobFactory;
            Map         = map;

            Init();
        }
Beispiel #3
0
 public Obelisk CreateObelisk(ObeliskConfiguration config, Map map)
 {
     return(new Obelisk(config, map, _mobFactory));
 }