Esempio n. 1
0
        public RedBatDownMovingState(RedBat redBat, MainStage game)

        {
            this.RedBat = redBat;
            this.game   = game;
            GetSprite   = new DownMovingRedBatSprite();
        }
Esempio n. 2
0
        public RedBatRightMovingState(RedBat redBat, IEnemyFactory factory)

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