private void Awake()
    {
        if (instance == null)
        {
            instance = this;
        }
        else if (instance != this)
        {
            Destroy(gameObject);
        }

        DontDestroyOnLoad(gameObject);
        enemies = new List <Enemy1>();

        boardScript = GetComponent <BoardManager1>();
        InitGame();
    }