public void Init(Game game)
        {
            this.game     = game;
            block         = new BlockModel(game);
            block.NoShade = true;
            held          = new FakePlayer(game);
            game.Events.ProjectionChanged += ProjectionChanged;

            anim = new HeldBlockAnimation();
            anim.Init(game, this);
        }