public TrackingSystem(Logger log, IMyCubeGrid cubeGrid, ShipComponents shipComponets, bool iscommand)
 {
     iscmd              = iscommand;
     this.log           = log;
     this.cubeGrid      = cubeGrid;
     this.shipComponets = shipComponets;
     screen_texts       = new Dictionary <string, string>();
 }
        public BasicNavigationSystem(Logger LOG, IMyCubeGrid entity, ShipComponents components)
        {
            this.log        = LOG;
            this.components = components;
            RemoteControl   = this.components.ControlUnits.FirstOrDefault();
            _grid           = entity;

            SetShipOrientation();
        }
 public NavigationSystem(Logger LOG, IMyCubeGrid entity, ShipComponents components) : base(LOG, entity, components)
 {
 }
Example #4
0
 public TrackingSystem(Logger log, IMyCubeGrid cubeGrid, ShipComponents shipComponets)
 {
     this.log           = log;
     this.cubeGrid      = cubeGrid;
     this.shipComponets = shipComponets;
 }