示例#1
0
        private void Initialize
        (
            HexMapManager hexMapManager,
            PrioritizedStartManager startManager
        )
        {
            _hexMapManager = hexMapManager;

            startManager.RegisterForStartWithPriority(DoPrioritizedStart, 1);
        }
示例#2
0
        private void Initialize
        (
            PipeManager pipeManager,
            HexMapManager hexMapManager,
            PrioritizedStartManager startManager
        )
        {
            _pipeManager   = pipeManager;
            _hexMapManager = hexMapManager;

            startManager.RegisterForStartWithPriority(DoPrioritizedStart, 2);
        }