예제 #1
0
        private InterceptorStation CreateInterceptorStation3(ThreatController threatController)
        {
            var interceptorComponent3 = new InterceptorsInSpaceComponent(this, StationLocation.Interceptor3);
            var interceptorStation3   = new InterceptorStation(
                StationLocation.Interceptor3,
                threatController,
                interceptorComponent3);

            return(interceptorStation3);
        }
예제 #2
0
        private InterceptorStation CreateInterceptorStation2(ThreatController threatController)
        {
            var interceptorComponent2 = new InterceptorsInSpaceComponent(this, StationLocation.Interceptor2);
            var interceptorStation2   = new InterceptorStation(
                StationLocation.Interceptor2,
                threatController,
                interceptorComponent2);

            return(interceptorStation2);
        }
예제 #3
0
        private InterceptorStation CreateInterceptorStation1(ThreatController threatController)
        {
            var interceptorComponent1 = new InterceptorsInSpaceComponent(this, StationLocation.Interceptor1);
            var interceptorStation1   = new InterceptorStation(
                StationLocation.Interceptor1,
                threatController,
                interceptorComponent1);

            return(interceptorStation1);
        }