按照要求输入显示代码错误
public class tank : MonoBehaviour {
public GameObject gobullet;
private GamObject bullet;
// Use this for initialization
void Start () {
bullet = Instantiate(gobullet);
bullet.transform.parent = this.transform;
}
// Update is called once per frame
void Update () {
}
}