public void Awake() { HSUtils.DebugLog("HaystackContinued#Awake"); this.bottomButtons = new BottomButtons(); this.bottomButtons.LoadSettings(); this.vesselListController = new VesselListController(this, this.bottomButtons); this.defaultScrollerView = new DefaultScrollerView(this, this.vesselListController); this.groupedScrollerView = new GroupedScrollerView(this, this.vesselListController); this.expandedVesselInfo = new ExpandedVesselInfo(this, this.bottomButtons, this.defaultScrollerView, this.groupedScrollerView); this.resizeHandle = new ResizeHandle(); windowId = Resources.rnd.Next(1000, 2000000); }
internal DefaultScrollerView(HaystackContinued haystackContinued, VesselListController vesselListController) { this.vesselInfoView = new VesselInfoView(haystackContinued); this.vesselListController = vesselListController; }