void Start()
    {
        hit_Counter = 0;
        bs = new BattleShip();
        ship_Size = 4;

        bs.Init_Ship(ship_Size);
        first_Completion = false;

        Debug.Log("done start in pbm");
    }
 void Start()
 {
     Debug.Log ("start in ebm");
     hit_Counter = 0;
     ship_Size = 4;
     bs = new BattleShip ();
     bs.Init_Ship (ship_Size);
     place_Battleship ();
     Debug.Log ("done start in ebm");
 }