Ejemplo n.º 1
0
        public static void Initilialise(IPlayer currPlayer)
        {
            control = true;
            activateBossWatch = new Stopwatch();
            damageFont = new Font(Color.Red, "Fonts", "big");
            currentPlayer = currPlayer;
            ballColliding = false;
            bossBallCollide = false;
            bossVsShipCollide = false;
            BallControls.CannonBallInitialise();

            // TODO Could be ENUM
            playerFlagBossCollide = -1;
        }
Ejemplo n.º 2
0
 public static void Initialise()
 {
     FontsManager.energyFont = new Font(Color.Yellow, "Fonts", "big");
     FontsManager.hpFont = new Font(Color.Red, "Fonts", "big");
     FontsManager.shieldFont = new Font(Color.Blue, "Fonts", "big");
 }