// Update is called once per frame
    void Update()
    {
        if (!waveController)
        {
            return;
        }

        if (waveController.GetIsWaveCleared())
        {
            foreach (Transform child in this.transform)
            {
                Destroy(child.gameObject);
            }
        }
    }