using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class GameManager : MonoBehaviour
{
ย ย public List<Bomb> bombs = new List<Bomb>();
ย ย void Start()
ย ย {
ย ย ย ย bombs = FindObjectsOfType<Bomb>();
ย ย }
FindObjectsOfType<Bomb>() ์์ ์ค๋ฅ๋จ๋ค ใ ใ .ย
bombs ๋ผ๋ ๋ฆฌ์คํธ์ Bomb ํ์
์ ์ค๋ธ์ ํธ๋ค์ย ๋ฐ๊ณ ์ถ์๋ฐ ์ด์ผํ๋....
๋๊ธ 0