예제 #1
0
파일: Ashes.cs 프로젝트: Ibax1/PT_aibar
        public Ashes(Enemy titanic)
        {

            sx1 = titanic.sx;
            sy1 = titanic.sy;
            px1 = titanic.px;
            py1 = titanic.py;
            speed =  10;
            speedd =  7;

        }
예제 #2
0
     public BulletEnemy(Enemy enemy)
     {
         sx = 4;
         sy = 4;
         px = enemy.px + 13;
         py = enemy.py+enemy.sy;
         speed = 30;
         speedd = 21;
         colr = Colr.r;
         direct = Direct.down;
 }