
* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요.
* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.
3-7 고양이 만들기 반복생성로직에서 GameManager.cs 에러메세지가 나와요 뭐가잘못됐는지 봐 주시겠습니까?

GameManager.cs
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class GameManager : MonoBehaviour
{
public GameObject normalCat;
// Start is called before the first frame update
void Start()
{
InvokeRepeating("MakeCat" , 0f, 1f);
}
// Update is called once per frame
void Update()
{
}
void MakeCat()
{
Instantiate(normalCat);
}
}
