예제 #1
0
        public BlueBatDownMovingState(BlueBat BlueBat, MainStage game)

        {
            this.BlueBat = BlueBat;
            this.game    = game;
            GetSprite    = new DownMovingBlueBatSprite();
        }
예제 #2
0
        public BlueBatDownMovingState(BlueBat BlueBat, IEnemyFactory factory)

        {
            die          = false;
            this.BlueBat = BlueBat;
            this.factory = factory;
            GetSprite    = new GeneralSprite(96, 96, 2);
        }