Exemple #1
0
Fichier : Dock.cs Projet : Cdrix/SM
    public Dock(Building build)
    {
        BuildKey  = build.MyId;
        _building = build;
        InitSpots();

        _seaRouter = new SeaRouter(_entry, build);
    }
Exemple #2
0
Fichier : Dock.cs Projet : Cdrix/SM
    internal TheRoute CreateRoute(string shipGoMyId)
    {
        InitSpots();

        if (_seaRouter == null)
        {
            _seaRouter = new SeaRouter(_entry, _building);
        }

        return(_seaRouter.PlotRoute(_entry, _allSpots, _allLookPoints, _building, shipGoMyId));
        //UVisHelp.CreateHelpers(route, Root.yellowSphereHelp);
    }